Subscribe by RSS
This is my lifestream page, a collection of some of the marks I leave behind on the web.
Home › Tag: css
Software Federation - GUI.NET | Determining and detecting Page Zoom levels in IE and Firefox
function getPageZoom() { var detector = $("zoom_level_detector"); var zoom = 1.0; if (isIE) { zoom = detector.offsetLeft / detector.style.pixelLeft; } else { zoom = detector.offsetHeight / 16; } return(zoom); }
converts CSS rules into inline style attributes gar nicht doof für html-newsletter
First CSS framework that allows you to work object-oriented and keeps your workflow as “DRY” as possible
Articles, Tools and Templates about Grid Layouts
The 5-Minute CSS Mobile Makeover • Perishable Press
Problems with the web on mobile devices and how to take care of them with CSS.
Paul Irish » Browser-specific CSS hacks
/***** Selector Hacks ******/ /* IE6 and below */ * html #uno { color: red } /* IE7 */ *:first-child+html #dos { color: red } /* IE7, FF, Saf, Opera */ html>body #tres { color: red } /* IE8, FF,…
CSS - String Truncation with Ellipsis | A JavaScript, CSS, and XHTML Resource By Matt Snider
Mit CSS Texte automatisch mit ... beenden (text-overflow: ellipsis), falls kein Platz ist.