textarea { resize: none; }
Tag Archives: CSS
CSS placeholder
<input id=”email” name=”email” placeholder=”insert email” /> input::-webkit-input-placeholder { color: red; } ::-webkit-input-placeholder { color: red; } :-moz-placeholder { color: red; }
Equal Height Columns with jQuery
Creating equal-height columns with CSS is sometimes a bear. But who needs the hassle of faux columns, “clear” divs and the rest? With this bit of jQuery, you can easily equalize the heights of any group of elements.
Definition Lists DL, DT and DD
So what is a definition list? Simply put it is a list of definitions. For the unabridged version read the relevant section in the HTML specification. Basically a definition list is composed of three HTML elements and some text. These are the <dl>, <dt> and <dd> elements. <DL> A definition list is the container element …
preloading images with css
HTML <div> <img src=”images/dog-over.gif” alt=”Dog” /> <img src=”images/cat-over.gif” alt=”Cat” /> <img src=”images/mouse-over.gif” alt=”Mouse” /> </div> CSS .preload{display:none;}
Bulletproof & Flexible Layouts Made Simple
Bulletproof & Flexible Layouts Made Simple “Yet Another Multicolumn Layout” (YAML) is an (X)HTML/CSS framework for creating modern and flexible floated layouts. The structure is extremely versatile in its programming and absolutely accessible for end users. Focussed on web standards and accessibility Slim framework core with numerous extensions Robust, flexible layout concept (columns & grids) …
Continue reading “Bulletproof & Flexible Layouts Made Simple”