Profile
Achievement
MikeyLikesIt's Recent SnippetsTagged css
- All /
« Prev 1 Next »
This is a method that I use to easily wrap an HTML container with nice curly quotes. I much prefer this method over using images because the quotes can be easily stylized using css fonts, colors, and sizes. Also, the markup is semantically correct.
1
983
posted 14 years ago by MikeyLikesIt
note that for the corners to work in IE, you need to install the htc code from http://code.google.com/p/curved-corner/
.curved {
-moz-border-radius:10px; /* Firefox */
-webkit-border-radius:10px; /* Safari and chrome */
-khtml-border-r...
4
983
posted 14 years ago by MikeyLikesIt