Welcome To Snipplr
Everyone's Recent Snippets Tagged css
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
IE6 and IE7 don't respect the 'outline' attribute for hyperlinks. This jQuery snippet removes the annoying outline in these browsers.
0
1058
posted 12 years ago by Huskie
rather annoying issue that I encountered and spent too much time researching - the relevant IE fix is in all caps
1
1158
posted 12 years ago by felicemente
Add the "no-js" class to your topmost html element, so you can use CSS to style JavaScript-free pages. This snippet will then replace that tag with "js", allowing you to style pages with JavaScript.
The excellent [HTML5 Boilerplate](http://html5bo...
0
2297
posted 12 years ago by EvanHahn
Just came across pure css3 soothing clouds, looks awesome, checkout!
0
858
posted 12 years ago by jimmy101
what could be placed in the * {} inorder to solve a few common issues
0
804
posted 12 years ago by prwhitehead
Originally from: http://webdesignerwall.com/tutorials/css-elastic-videos
0
863
posted 12 years ago by thewickedchemist
Show only non-printable area on web page but print only the printable areas
0
938
posted 12 years ago by duzenz
defining a printable area from a html web page. Making only one place printable
0
1300
posted 12 years ago by duzenz
Box shadow properties (example) box-shadow: 1px 3px 5px 2px #c6c6c6;
1px = horizontal offset
3px = vertical offset
5px = blur radius
2px = spread distance
#c6c6c6 = color
0
594
posted 12 years ago by ninacess
In my opinion, this is the best cross-browser method of clearing floated elements in a container. Remember to add .clear-fix{zoom:1;} to an IE specific stylesheet, otherwise IE 7 will complain.
0
792
posted 12 years ago by Huskie