This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
display: -webkit-box; /* OLD: Safari, iOS, Android browser, older WebKit browsers. */ | |
display: -moz-box; /* OLD: Firefox (buggy) */ | |
display: -ms-flexbox; /* MID: IE 10 */ | |
display: -webkit-flex; /* NEW, Chrome 21+ */ | |
display: flex; /* NEW: Opera 12.1, Firefox 22+ */ | |
-webkit-box-align: center; -moz-box-align: center; /* OLD… */ | |
-ms-flex-align: center; /* You know the drill now… */ | |
-webkit-align-items: center; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
No Hyphen | |
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | |
Code | |
p { | |
text-align: justify; | |
-webkit-hyphens: none; | |
-moz-hyphens: none; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media print { | |
a:after { | |
content: " [" attr(href) "] "; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a { | |
border-bottom:1px solid #bbb; | |
color:#666; | |
display:inline-block; | |
position:relative; | |
text-decoration:none; | |
} | |
a:hover, | |
a:focus { | |
color:#36c; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Browser specific (not valid) styles to make preformatted text wrap */ | |
pre { | |
white-space: pre-wrap; /* css-3 */ | |
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ | |
white-space: -pre-wrap; /* Opera 4-6 */ | |
white-space: -o-pre-wrap; /* Opera 7 */ | |
word-wrap: break-word; /* Internet Explorer 5.5+ */ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#container { | |
min-height: 550px; | |
height: auto !important; | |
height: 550px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#columns-3 { | |
text-align: justify; | |
-moz-column-count: 3; | |
-moz-column-gap: 12px; | |
-moz-column-rule: 1px solid #c4c8cc; | |
-webkit-column-count: 3; | |
-webkit-column-gap: 12px; | |
-webkit-column-rule: 1px solid #c4c8cc; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#mydiv { | |
-webkit-box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.52); | |
-moz-box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.52); | |
box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.52); | |
} |
OlderNewer