vote up 16 vote down star
36

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 '09 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 '09 at 23:21
1  
why not add border-radius: 10px; for browsers supporting CSS3? – Paul Dixon Mar 9 '09 at 23:24
1  
Properties beginning with a - are vendor-specific, yes. Browsers are free to ignore them completely and still be standards-compliant. – strager Mar 10 '09 at 0:15
1  
@X-Istence - ahem Queen's English (note the apostrophe) – K Prime Jan 26 at 8:17
show 7 more comments

20 Answers

vote up 13 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 '09 at 0:09
vote up 14 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
1  
Why did I assume you can only do this with two classes..... – Baddie Dec 29 at 7:06
vote up 11 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 '09 at 23:43
I would vote this up but it should be a community wiki answer – John Sheehan Mar 11 '09 at 20:55
Sorry. Should have done it from the start. – Ben Alpert Mar 11 '09 at 22:26
I don't know why everyone uses divs with a clear, i think br is a much more semantically relevant element to use, and I would consider a br with a clear on it to be less ugly then floating everything whether it needs it or not – Matt Briggs Jan 4 at 20:12
vote up 10 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
1  
You can also use spriting for javascript controlled animations. Just cycle through the sprites on a setInterval etc. – Matthew Lock Dec 3 at 6:14
Good suggestion from Matthew Lock - the bonus with that suggestion is that you just change the position of the image, rather than the source of the image - so pre-loading isn't necessary on your entire animation set. – Sohnee Dec 3 at 8:03
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 4 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 '09 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 '09 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 3 vote down

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

sample

link|flag
This is the coolest one yet! +1 – alex Jan 14 at 3:25
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 '09 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 '09 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 '09 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 '09 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 '09 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 '09 at 23:13
vote up 1 vote down

You can display the document’s title element:

head, title {
    display: block;
}
link|flag
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
1  
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
vote up 0 vote down

Cross-browser (IE6+, FF, Safari) float alternative:

.inline-block {
    display: inline-block;
    display: -moz-inline-box;
    -moz-box-orient: vertical;
    vertical-align: top;
    zoom: 1;
    *display: inline; }
link|flag
This only works on elements in IE6/7 that are inline by default right? – alex Dec 29 at 23:23
Works on DIV, which is a block element. – Nimbuz Dec 30 at 3:19
vote up 0 vote down

I have no Idea whether this is a hidden feature, but I just wowed seeing this: http://www.romancortes.com/blog/css-3d-meninas/

link|flag
vote up -1 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.

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 '09 at 23:48
You are absolutely right Alex. I deleted the last paragraph. – Kees de Kooter Jan 4 at 20:09

Your Answer

Get an OpenID
or
never shown

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