vote up 12 vote down star
22

I have definitely picked up some useful tips in the hidden features style questions concerning PHP and XHTML.

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

Here are some to start the ball

@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 
}

These are not so much hidden, but their use is not often widespread. What tips, tricks, rare features have you discovered with CSS?

flag
This should be a CW. – Ólafur Waage Mar 9 at 23:21
Yup. Double check all the other 'hidden-features', I'd wager that just about all of them are too. – George Stocker Mar 9 at 23:21
1  
why not add border-radius: 10px; for browsers supporting CSS3? – Paul Dixon Mar 9 at 23:24
@Ólafur Waage: What's with the s/behaviour/behavior/ ? Behaviour is just as correct as behavior is, even more so since it is the Queens English. – X-Istence Mar 9 at 23:26
The @charset rule must be in the first line of the file. – Gumbo Mar 9 at 23:29
show 4 more comments

17 Answers

vote up 11 vote down check

Maybe negative margins and absolute positioned elements in relative positioned elements.

See How would YOU do this with CSS? for examples.

link|flag
1  
care to rather explain? also plz wiki it – hasen j Mar 10 at 0:09
vote up 11 vote down

Apply multiple styles/classes to an element like this class="bold red GoldBg"

<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>
link|flag
This is a great answer - it's surprising how many people don't know this. – Sohnee Jun 5 at 7:44
vote up 8 vote down

The fact that floating a parent element will cause it to expand to contain all of its floated children.

link|flag
1  
Knew this one but pretty handy. Also don't forget if that isn't an option, you can use the overflow property without resorting to ugly clearing divs. – alex Mar 9 at 23:43
I would vote this up but it should be a community wiki answer – John Sheehan Mar 11 at 20:55
Sorry. Should have done it from the start. – Ben Alpert Mar 11 at 22:26
vote up 7 vote down

I really like CSS sprites.

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.

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: http://www.stevefenton.co.uk/Content/Blog/Date/200905/Blog/Google-Uses-Image-Sprites/

link|flag
vote up 4 vote down

Not so much hidden features, but a question featuring CSS tips which every beginning developer should know about

link|flag
vote up 4 vote down

Currently only for Safari 3 but quite interesting: CSS Animations

link|flag
vote up 3 vote down

My ones are:

  • all properties of aural sheets like azimuth, pitch...
  • some properties of the print module like page-break-after: avoid;
  • counter-increment: section 1;
  • border-collapse: collapse;
  • background-color: transparent;
  • outline: 1px solid...
link|flag
vote up 3 vote down

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.

CSS

/*Red for IE6*/
.link {color:#F00;}
/*Blue for everything else*/
#content>.link {color:#00F;}

HTML

<div id="content">
    <a class="link" href="#">Link</a>
</div>

Here is a list of selectors (for CSS2) and a browser compatibility chart.

link|flag
I'm pretty sure child selectors ARE a feature. =] – strager Mar 10 at 0:17
2  
They ARE a feature, but the fact that you can use them to isolate IE6 is more of a trick. – VirtuosiMedia Mar 10 at 0:21
vote up 3 vote down

You can set a variable width for an absolutely positioned element by specifying both left and right properties. This gives you more control than simply setting width to a percentage.

For example:

#myElement {
    position: absolute;
    left: 5px;
    right: 10px;
}
link|flag
I don't believe this works in IE, though. – MiffTheFox Jun 27 at 22:44
Surely it works in IE8? – Bobby Jack Jul 9 at 15:44
vote up 2 vote down

inline blocks (alternative to floating divs):

.inline_block
{
    display:-moz-inline-box;
    display:inline-block;
}

Don't apply this class to a div! it won't work! apply it to a span (or an inline element)

<span class="inline_block">
</span>
link|flag
IE6 only supports with inline elements, am I correct? – alex Mar 9 at 23:51
not sure which browser supports or doesn't support divs, but that's why I said it doesn't work on divs! – hasen j Mar 10 at 0:06
Why would divs not be supported? A div is a span with display: block (but may have extra styling by a browser or author stylesheet). – strager Mar 10 at 0:17
don't you know how browsers are nice to us? it doesn't work on an element that has block display, online inline elements. – hasen j Mar 10 at 1:59
@strager while you are correct, don't underestimate IE's implementation (or lack) of standards – alex Jun 22 at 22:56
vote up 1 vote down

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. How to create custom CSS intellisense schema in Visual Studio 2005 and 2008.

link|flag
vote up 1 vote down

Not really "hidden", but understanding the box model and positioning model will help tremendously.

Like, knowing that a position: absolute element is positioned relative to its first parent that is styled with position: relative.

link|flag
No, it's positioned relative to the closest parent with any 'position:' other than the default, 'static' – Gareth Mar 9 at 23:39
@Gareth - almost, "fixed" also doesn't count – annakata Jun 5 at 7:49
vote up 1 vote down

Another IE6 selector

* html .something
{
  color:red;
}

Fixing random IE6 rendering bugs - apply zoom:1 which will trigger layout.

link|flag
Note zoom will not validate... if this matters to you then try height: 1% or similar to trigger hasLayout – alex Mar 11 at 23:13
vote up 1 vote down

Take a look at Webkit CSS Transformations, e.g. -webkit-transform: rotate(9deg);

sample

link|flag
vote up 0 vote down

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.

Unfortunately the other big palyer in the browser market still shows no sign of implementing css3 features.

And for your opening question: there are numerous sites dedicated to browser quirks, css style patterns an cross browser strategies.

link|flag
You could probably add that last paragraph to any Stack Overflow answer. But it wouldn't be very helpful would it? – alex Mar 9 at 23:48
vote up 0 vote down

Cross browser inline-block works on block and inline elements using the combined declarations:

.column { -moz-inline-box; -moz-box-orient:vertical; display:inline-block; vertical-align:top; }

for standards browsers including Firefox 2, and:

.ie_lte7 .column { display:inline; } for IE6/7

link|flag
vote up 0 vote down
.class {
/* red for chrome, ff, safari, opera */
background-color: red;
/* green for IE6 */
.background-color: green;
/* blue for IE7+ */
_background-color: blue;
}

will render your <whatever> background different in those browser categories

link|flag
Browser hacks aern't features? Oh well, still useful! – alex Jul 9 at 21:58
It's best practice to add separate stylesheets for IE6 and IE7 using Conditional Comments quirksmode.org/css/condcom.html instead of relying on rendering engine bugs. – Tom Oct 24 at 12:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.