asimov
Poslední snippety
CSS clearing without redundant elements using CSS 2.0...
.clearfix
{
display: inline-table;
/* Hides from IE-mac \*/
height: 1%;
Tagy:
css 23 řádků | 2008-03-13 23:36:39 | asimov
© Stu Nicholls - works almost everywere as i know
...
/* Opera, Firefox, Netscape, Safari ... */
.container {
min-height:8em;
height:auto !important;
}
Tagy:
css 11 řádků | 2008-03-13 23:26:59 | asimov
simple show/hide function in js that needs mostly every webmaster...
// old classic
function showhide(e) {
el = document.getElementById(e);
el.style.display = el.style.display == "block" ? "none" : "block";
}
Tagy:
javascript 9 řádků | 2008-03-13 23:22:16 | asimov
.element{
/* Mozilla ignores crazy MS image filters, so it will skip the following */
//filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale src='images/chapela.png');
}
/* IE ignores styles with [attributes], so it will skip the following. */
Tagy:
css 8 řádků | 2008-03-13 23:17:04 | asimov