Created
April 14, 2012 17:17
-
-
Save boyofgreen/2386032 to your computer and use it in GitHub Desktop.
HTML5 Hacks 3.3
This file contains 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
p.test{ | |
width: 45px; | |
padding:5px; | |
border: 1px solid black; | |
text-transform: uppercase; | |
} |
This file contains 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
<p class="test"> CSS is awesome!</p> |
This file contains 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
p.test{ | |
width: 45px; | |
padding:5px; | |
border: 1px solid black; | |
word-wrap:break-word; | |
text-transform: uppercase; | |
} |
This file contains 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
<p class="test"> CSS3 is awesome!</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment