CSS Hidden Features - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T00:09:04Z http://stackoverflow.com/feeds/question/628407 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/628407/css-hidden-features 14 CSS Hidden Features alex 2009-03-09T23:17:27Z 2009-10-24T12:55:52Z <p>I have definitely picked up some useful tips in the <em>hidden features</em> style questions concerning PHP and XHTML. </p> <p>So here is one to cover CSS. While easy to pick up, it takes a little while to learn about everything, their default behaviors, properties etc</p> <p>Here are some to start the ball</p> <pre><code>@charset "UTF-8"; /* set the character set. must be first line as Gumbo points out in comments */ .element { /* takes precedence over other stylings */ display: block !important; /* mozilla .... rounded corners with no images */ -moz-border-radius: 10px; /* webkit equivalent */ -webkit-border-radius: 10px } </code></pre> <p>These are not so much <em>hidden</em>, but their use is not often widespread. What tips, tricks, rare features have you discovered with CSS?</p> http://stackoverflow.com/questions/628407/css-hidden-features/628415#628415 1 Answer by overslacked for CSS Hidden Features overslacked 2009-03-09T23:26:50Z 2009-03-09T23:26:50Z <p>I know this isn't a CSS feature, but it sure can make these easier to use and live with if you're using Visual Studio. <a href="http://blogs.msdn.com/mikhailarkhipov/archive/2007/10/19/how-to-create-custom-css-intellisense-schema-in-visual-studio-2005-and-2008.aspx" rel="nofollow">How to create custom CSS intellisense schema in Visual Studio 2005 and 2008.</a></p> http://stackoverflow.com/questions/628407/css-hidden-features/628419#628419 4 Answer by Paul Dixon for CSS Hidden Features Paul Dixon 2009-03-09T23:28:25Z 2009-03-09T23:28:25Z <p>Not so much hidden features, but a question featuring <strong><a href="http://stackoverflow.com/questions/500827/css-tips-which-every-beginning-developer-should-know-about">CSS tips which every beginning developer should know about</a></strong> </p> http://stackoverflow.com/questions/628407/css-hidden-features/628428#628428 9 Answer by Ben Alpert for CSS Hidden Features Ben Alpert 2009-03-09T23:32:29Z 2009-03-09T23:32:29Z <p>The fact that <code>float</code>ing a parent element will cause it to expand to contain all of its <code>float</code>ed children.</p> http://stackoverflow.com/questions/628407/css-hidden-features/628429#628429 12 Answer by Gumbo for CSS Hidden Features Gumbo 2009-03-09T23:32:39Z 2009-03-12T00:07:13Z <p>Maybe <em>negative margins</em> and <em>absolute positioned elements in relative positioned elements</em>.</p> <p>See <a href="http://stackoverflow.com/questions/636712/how-would-you-do-this-with-css/636767#636767">How would YOU do this with CSS?</a> for examples.</p> http://stackoverflow.com/questions/628407/css-hidden-features/628444#628444 1 Answer by Ben Alpert for CSS Hidden Features Ben Alpert 2009-03-09T23:35:43Z 2009-03-09T23:35:43Z <p>Not really "hidden", but understanding the box model and positioning model will help tremendously.</p> <p>Like, knowing that a <code>position: absolute</code> element is positioned relative to its first parent that is styled with <code>position: relative</code>.</p> http://stackoverflow.com/questions/628407/css-hidden-features/628457#628457 -1 Answer by Kees de Kooter for CSS Hidden Features Kees de Kooter 2009-03-09T23:41:25Z 2009-03-09T23:41:25Z <p>The border-radius stuff is part of the CSS3 specification. As CSS3 is still not completely finished the more progressive browsers in the meantime implement parts of it with their own properties (-moz, -webkit). So we can already enjoy rounded corners, cleanly coded in pure css.</p> <p>Unfortunately the other big palyer in the browser market still shows no sign of implementing css3 features.</p> <p>And for your opening question: there are numerous sites dedicated to browser quirks, css style patterns an cross browser strategies.</p> http://stackoverflow.com/questions/628407/css-hidden-features/628474#628474 2 Answer by hasen j for CSS Hidden Features hasen j 2009-03-09T23:47:48Z 2009-03-10T00:07:35Z <p>inline blocks (alternative to floating divs):</p> <pre><code>.inline_block { display:-moz-inline-box; display:inline-block; } </code></pre> <p><strong>Don't apply this class to a div!</strong> it won't work! apply it to a span (or an inline element)</p> <pre><code>&lt;span class="inline_block"&gt; &lt;/span&gt; </code></pre> http://stackoverflow.com/questions/628407/css-hidden-features/628479#628479 4 Answer by alex for CSS Hidden Features alex 2009-03-09T23:50:52Z 2009-03-09T23:50:52Z <p>Currently only for Safari 3 but quite interesting: <a href="http://webkit.org/blog/138/css-animation/" rel="nofollow">CSS Animations</a></p> http://stackoverflow.com/questions/628407/css-hidden-features/628504#628504 4 Answer by facildelembrar for CSS Hidden Features facildelembrar 2009-03-10T00:06:59Z 2009-03-10T00:06:59Z <p>My ones are:</p> <ul> <li>all properties of aural sheets like <code>azimuth</code>, <code>pitch</code>...</li> <li>some properties of the print module like <code>page-break-after: avoid;</code></li> <li><code>counter-increment: section 1;</code></li> <li><code>border-collapse: collapse;</code></li> <li><code>background-color: transparent;</code></li> <li><code>outline: 1px solid...</code></li> </ul> http://stackoverflow.com/questions/628407/css-hidden-features/628512#628512 3 Answer by VirtuosiMedia for CSS Hidden Features VirtuosiMedia 2009-03-10T00:11:49Z 2009-03-10T00:21:07Z <p>Not really a feature, but useful nonetheless: The child selector works in all browsers except IE6, allowing you to isolate IE6 without using hacks or conditional stylesheets or invalidating your code. Thus, the link in the following code will be red in IE6, blue in every other browser. </p> <p><strong>CSS</strong></p> <pre><code>/*Red for IE6*/ .link {color:#F00;} /*Blue for everything else*/ #content&gt;.link {color:#00F;} </code></pre> <p><strong>HTML</strong></p> <pre><code>&lt;div id="content"&gt; &lt;a class="link" href="#"&gt;Link&lt;/a&gt; &lt;/div&gt; </code></pre> <p>Here is a <a href="http://www.w3.org/TR/CSS2/selector.html" rel="nofollow">list of selectors</a> (for CSS2) and a <a href="http://www.quirksmode.org/css/contents.html#link2" rel="nofollow">browser compatibility chart</a>.</p> http://stackoverflow.com/questions/628407/css-hidden-features/636317#636317 1 Answer by korchev for CSS Hidden Features korchev 2009-03-11T20:52:11Z 2009-03-11T20:52:11Z <p>Another IE6 selector</p> <pre><code>* html .something { color:red; } </code></pre> <p>Fixing random IE6 rendering bugs - apply zoom:1 which will trigger <a href="http://www.satzansatz.de/cssd/onhavinglayout.html" rel="nofollow">layout</a>. </p> http://stackoverflow.com/questions/628407/css-hidden-features/954669#954669 12 Answer by Binoj Antony for CSS Hidden Features Binoj Antony 2009-06-05T07:33:36Z 2009-06-05T07:33:36Z <p>Apply multiple styles/classes to an element like this <code>class="bold red GoldBg"</code></p> <pre><code>&lt;html&gt;&lt;head&gt; &lt;style&gt; .bold {font-weight:bold} .red {color:red} .GoldBg {background-color:gold} &lt;/style&gt; &lt;/head&gt;&lt;body&gt; &lt;p class="bold red GoldBg"&gt;Foo.Bar(red)&lt;/p&gt; &lt;/body&gt;&lt;/html&gt; </code></pre> http://stackoverflow.com/questions/628407/css-hidden-features/954706#954706 10 Answer by Sohnee for CSS Hidden Features Sohnee 2009-06-05T07:47:50Z 2009-06-05T07:47:50Z <p>I really like CSS sprites.</p> <p>Rather than have 20 images for all your site buttons and logos (and therefore 20 http requests with the latency around each one) you just use one image, and position it each time so only the bit you want is visible.</p> <p>It's difficult to post an example as you'd need to see the component image and the placement CSS - but I've blogged Google's use of it here: <a href="http://www.stevefenton.co.uk/Content/Blog/Date/200905/Blog/Google-Uses-Image-Sprites/" rel="nofollow">http://www.stevefenton.co.uk/Content/Blog/Date/200905/Blog/Google-Uses-Image-Sprites/</a></p> http://stackoverflow.com/questions/628407/css-hidden-features/954794#954794 3 Answer by Steve Harrison for CSS Hidden Features Steve Harrison 2009-06-05T08:15:24Z 2009-06-05T08:15:24Z <p>You can set a variable width for an absolutely positioned element by specifying both <code>left</code> and <code>right</code> properties. This gives you more control than simply setting <code>width</code> to a percentage.</p> <p>For example:</p> <pre><code>#myElement { position: absolute; left: 5px; right: 10px; } </code></pre> http://stackoverflow.com/questions/628407/css-hidden-features/1064727#1064727 0 Answer by Paul Sweatte for CSS Hidden Features Paul Sweatte 2009-06-30T16:40:34Z 2009-06-30T16:40:34Z <p>Cross browser inline-block works on block and inline elements using the combined declarations:</p> <p>.column { -moz-inline-box; -moz-box-orient:vertical; display:inline-block; vertical-align:top; } </p> <p>for standards browsers including Firefox 2, and: </p> <p>.ie_lte7 .column { display:inline; } for IE6/7</p> http://stackoverflow.com/questions/628407/css-hidden-features/1103633#1103633 0 Answer by TheBrain for CSS Hidden Features TheBrain 2009-07-09T12:43:49Z 2009-07-09T12:43:49Z <pre><code>.class { /* red for chrome, ff, safari, opera */ background-color: red; /* green for IE6 */ .background-color: green; /* blue for IE7+ */ _background-color: blue; } </code></pre> <p>will render your &lt;whatever&gt; background different in those browser categories</p> http://stackoverflow.com/questions/628407/css-hidden-features/1617944#1617944 2 Answer by Nikita Prokopov for CSS Hidden Features Nikita Prokopov 2009-10-24T12:55:52Z 2009-10-24T12:55:52Z <p>Take a look at Webkit CSS Transformations, e.g. <code>-webkit-transform: rotate(9deg);</code> </p> <p><img src="http://dl.getdropbox.com/u/561580/imgs/css%5Frotate.gif" alt="sample" /></p>