css
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
css [2013/01/20 13:08] – skipidar | css [2020/12/27 20:35] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Tools ====== | ||
+ | ^Tool ^Link^ | ||
+ | |CSS3 Generator| http:// | ||
+ | |||
+ | |||
+ | ====== TAGS ====== | ||
+ | ===== media ===== | ||
+ | Can override the default value, like " | ||
+ | <sxh css> | ||
+ | @media (max-width: | ||
+ | #subhead ul.dropdown { | ||
+ | float: left; | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | |||
+ | ====== PATTERNS ====== | ||
+ | ===== Sticky Footer ===== | ||
+ | |||
+ | ^Pattern^ Link To Example^ | ||
+ | |The Sticky Footer remains at the bottom, unlexx the content is larger, than the screen height. Then the Footer is pushed down by the content. |http:// | ||
+ | {{http:// | ||
+ | |||
+ | |||
+ | ===== CSS3 Shadow ===== | ||
+ | |||
+ | ^Pattern^ Link To Example^ | ||
+ | |Box Shadow |http:// | ||
+ | <sxh css> | ||
+ | .shadow { | ||
+ | -moz-box-shadow: | ||
+ | -webkit-box-shadow: | ||
+ | box-shadow: | ||
+ | /* For IE 8 */ | ||
+ | -ms-filter: | ||
+ | /* For IE 5.5 - 7 */ | ||
+ | filter: progid: | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | |||