CSS Hidden Features - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T00:09:04Zhttp://stackoverflow.com/feeds/question/628407http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/628407/css-hidden-features14CSS Hidden Featuresalex2009-03-09T23:17:27Z2009-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#6284151Answer by overslacked for CSS Hidden Featuresoverslacked2009-03-09T23:26:50Z2009-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#6284194Answer by Paul Dixon for CSS Hidden FeaturesPaul Dixon2009-03-09T23:28:25Z2009-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#6284289Answer by Ben Alpert for CSS Hidden FeaturesBen Alpert2009-03-09T23:32:29Z2009-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#62842912Answer by Gumbo for CSS Hidden FeaturesGumbo2009-03-09T23:32:39Z2009-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#6284441Answer by Ben Alpert for CSS Hidden FeaturesBen Alpert2009-03-09T23:35:43Z2009-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-1Answer by Kees de Kooter for CSS Hidden FeaturesKees de Kooter2009-03-09T23:41:25Z2009-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#6284742Answer by hasen j for CSS Hidden Featureshasen j2009-03-09T23:47:48Z2009-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><span class="inline_block">
</span>
</code></pre>
http://stackoverflow.com/questions/628407/css-hidden-features/628479#6284794Answer by alex for CSS Hidden Featuresalex2009-03-09T23:50:52Z2009-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#6285044Answer by facildelembrar for CSS Hidden Featuresfacildelembrar2009-03-10T00:06:59Z2009-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#6285123Answer by VirtuosiMedia for CSS Hidden FeaturesVirtuosiMedia2009-03-10T00:11:49Z2009-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>.link {color:#00F;}
</code></pre>
<p><strong>HTML</strong></p>
<pre><code><div id="content">
<a class="link" href="#">Link</a>
</div>
</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#6363171Answer by korchev for CSS Hidden Featureskorchev2009-03-11T20:52:11Z2009-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#95466912Answer by Binoj Antony for CSS Hidden FeaturesBinoj Antony2009-06-05T07:33:36Z2009-06-05T07:33:36Z<p>Apply multiple styles/classes to an element like this <code>class="bold red GoldBg"</code></p>
<pre><code><html><head>
<style>
.bold {font-weight:bold}
.red {color:red}
.GoldBg {background-color:gold}
</style>
</head><body>
<p class="bold red GoldBg">Foo.Bar(red)</p>
</body></html>
</code></pre>
http://stackoverflow.com/questions/628407/css-hidden-features/954706#95470610Answer by Sohnee for CSS Hidden FeaturesSohnee2009-06-05T07:47:50Z2009-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#9547943Answer by Steve Harrison for CSS Hidden FeaturesSteve Harrison2009-06-05T08:15:24Z2009-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#10647270Answer by Paul Sweatte for CSS Hidden FeaturesPaul Sweatte2009-06-30T16:40:34Z2009-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#11036330Answer by TheBrain for CSS Hidden FeaturesTheBrain2009-07-09T12:43:49Z2009-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 <whatever> background different in those browser categories</p>
http://stackoverflow.com/questions/628407/css-hidden-features/1617944#16179442Answer by Nikita Prokopov for CSS Hidden FeaturesNikita Prokopov2009-10-24T12:55:52Z2009-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>