CSS, short for Cascading Style Sheets, is a language used to control the presentation of HTML and XML documents including colors, layout and fonts.

learn more… | top users | synonyms (5)

613
votes
90answers
70k views

Why not use tables for layout in HTML? [closed]

It seems to be the general opinion that tables should not be used for layout in HTML. Why? I have never (or rarely to be honest) seen good arguments for this. The usual answers are: It's good to ...
429
votes
6answers
10k views

How does this CSS triangle shape work?

There're plenty of different CSS shapes over at http://css-tricks.com/examples/ShapesOfCSS/ and I'm particularly puzzled with a triangle: #triangle-up { width: 0; height: 0; ...
281
votes
13answers
19k views

How to Manage CSS Explosion

I have been heavily relying on CSS for a website that I am working on (currently, everything is done as property values within each tag on the website and I'm trying to get away from that to make ...
267
votes
9answers
173k views

How to set cellpadding & cellspacing in CSS?

How can I control cellpadding and cellspacing in a CSS stylesheet to obtain the same effect as when putting the attributes on the table tag?
224
votes
22answers
126k views

How to align checkboxes and their labels consistently cross-browsers

This is one of the minor CSS problems that plagues me constantly. How do folks around StackOverflow vertically align checkboxes and their labels consistently cross-browser? Whenever I align them ...
211
votes
13answers
81k views

css rule to disable text selection highlighting

For anchors that act like buttons (for example the Question, Tags, User, etc at the top of the SO page) or tabs, is there a CSS standard way to disable the highlighting effect if the user accidentally ...
190
votes
3answers
44k views

Change an input's HTML5 placeholder color with CSS

Chrome supports the placeholder attribute on input[type=text] elements (others probably do too). But the following CSS doesn't do diddly squat to the placeholder's value: <style> ...
180
votes
15answers
195k views

CSS: semi-transparent background, but not text

Is there a way in CSS to make the background of an element semi-transparent, but still have the text of the element non-transparent? (Without separating the text and background in two elements ...
172
votes
16answers
38k views

When to use IMG vs. CSS background-image?

In what situations is it more appropriate to use an HTML IMG tag to display an image, as opposed to a CSS background-image, and vice-versa? Single-reason answers are welcome, but I'm hoping ...
166
votes
12answers
258k views

Change an element's CSS class with JavaScript

How can I change a CSS class of an HTML element in response to an onClick event using JavaScript?
165
votes
16answers
61k views

Best css reset

I'm looking for a css reset kit, but I never used one before. So which kits its out there, and whats your experiences regarding these kits? And, is its any different between these kits, something you ...
160
votes
6answers
184k views

How to center DIV in DIV?

I'd like to ask you if anyone know how to horizontally center DIV in DIV with CSS ( if it's possible at all ). Outer DIV has 100%: <div id="outer" style="width:100%"> <div ...
156
votes
20answers
4k views

Are fluid websites worth making anymore?

I'm making a website now and I am trying to decide if I should make it fluid or not. Fixed width websites are much easier to make and also much easier to make them appear consistent. To be honest ...
147
votes
31answers
20k views
144
votes
20answers
101k views

Simulators/emulators for mobile browser testing?

I'm doing development of a web application aimed at mobile devices. What software can I use to simulate/emulate mobile browser environments? I'm specifically looking for a way to test on Mobile ...
143
votes
9answers
89k views

How do I vertically align text next to an image with CSS?

Why won't "vertical-align: middle" work? And yet, "vertical-align: top" does work. <div> <img style="width:30px;height:30px"> <span style="vertical-align:middle">Doesn't ...
135
votes
16answers
16k views

Is it OK to use a CSS reset stylesheet? [closed]

I'm starting a new web project and I was planning to use a CSS reset stylesheet to have the same starting point styles in all major browsers. Have you used CSS resets? Would you recommend it? ...
132
votes
12answers
93k views

Using jQuery to center a DIV on the screen

How do I go about setting a <div> in the center of the screen using jQuery?
131
votes
7answers
38k views

What characters are valid in CSS class names?

What characters/symbols are allowed within CSS class names? Characters such as: ~ ! @ $ % ^ & * ( ) _ + - = , . / ' ; : " ? > < [ ] \ { } | ` # I know a lot of these are invalid, but ...
124
votes
20answers
29k views

What is an elegant way to force browsers to reload cached CSS/JS files?

I have noticed that some browsers (in particular, Firefox and Opera) are very zealous in using cached copies of .css and .js files, even between browser sessions. This leads to a problem when you ...
119
votes
5answers
10k views

Convert RGB-->RGBA

I have a hex color, e.g. #F4F8FB (or rgb(244, 248, 251)) that I want converted into an as-transparent-as-possible rgba color (when displayed over white). Make sense? I'm looking for an algorithm, or ...
119
votes
4answers
29k views

Are there hosted jQuery UI themes anywhere? [closed]

Possible Duplicate: Downloading jQuery CSS from Google's CDN I'm using Google-hosted jQuery and jQueryUI, but I'm wondering if there are hosted jQueryUI themes anywhere? I'd like to ...
119
votes
18answers
86k views

Convert HTML + CSS to PDF with PHP?

Ok, I'm now banging my head against a brick wall with this one. I have an HTML (not XHTML) document that renders fine in Firefox 3 and IE 7. It uses fairly basic CSS to style it and renders fine in ...
110
votes
20answers
21k views

Any recommendations for a CSS minifier?

Any recommendations for a CSS minifier? I’ll be rooting around Google and trying some out, but I suspected that the smart, proficient and curiously handsome StackOverflow community might have already ...
104
votes
11answers
79k views

Make a div fill the remaining screen space

I am currently working on a web application, where I want the content to fill the height of the entire screen. The page has a header, which contains a logo, and account information. This could be an ...
103
votes
8answers
48k views

CSS 100% height with padding/margin

This has been driving me crazy for a couple of days now, but in reality it's a problem that I've hit off and on for the last few years: With HTML/CSS how can I make an element that has a width and/or ...
102
votes
11answers
3k views

Isn't it silly that a tiny favicon requires yet another HTTP request? How to make favicon go into a sprite?

Everybody knows how to setup a favicon.ico link in HTML: <link rel="shortcut icon" href="http://hi.org/icon.ico" type="image/x-icon" /> But I think it is just silly that for a tiny ...
101
votes
3answers
30k views

Downloading jQuery CSS from Google's CDN

I am planning on using Google to download the jQuery lib for both UI and Core. My question is, do they allow me to download the CSS for it or should I have to host it myself? Also if I use Google to ...
99
votes
10answers
181k views

How to apply CSS to iFrame?

I have simple page that has some iFrame sections (to display RSS links). How can I apply the same CSS format for the main page to the page displayed in the iFrame?
98
votes
15answers
68k views

How to remove Firefox's dotted outline on BUTTONS as well as links?

I can make Firefox not display the ugly dotted focus outlines on links with this: a:focus { outline: none; } But how can I do this for <button> tags as well? When I do this: ...
97
votes
7answers
17k views

When to use margin vs padding in CSS

When writing CSS, is there a particular rule or guideline that should be used in deciding when to use margin and when to use padding?
97
votes
25answers
22k views

What is the best CSS Framework and are they worth the effort?

Reading on another forum I've came across the world of CSS Frameworks. The one I've been specifically looking at is BluePrint. I was wondering if anyone else had come across CSS frameworks, suggest ...
95
votes
11answers
75k views

Is there a CSS parent selector?

I would like to select the <li> element that is a parent (which immediately precedes the anchor tag, if that helps...) according to some attribute of the anchor tag. i.e. my CSS would be ...
95
votes
11answers
73k views

Make CSS Div Width Equal To Contents

I have a layout similar to: <div> <table> </table> </div> I would like for the Div element to only expand to as wide as my table element becomes. Any suggestions? ...
93
votes
16answers
41k views

Which method of 'clearfix' is best?

I have the age old problem of a div wrapping a 2 column layout. My sidebar is floated so my container div fails to wrap the content & sidebar. <div id="container"> <div ...
91
votes
2answers
15k views

CSS Selectors parsed right to left. Why?

CSS Selectors are parsed by browser engines right to left. So they first find the children and then check their parents to see if they match the rest of the parts of the rule. Why is this? Is it ...
90
votes
8answers
46k views

Is it possible to include one css file into another?

Is it possible to include one css file into another?
86
votes
6answers
35k views

Adding HTML entities using CSS content

How do you use the CSS content property to add html entities? I have a number of links which I make into a breadcrumb style list by adding an arrow before each. <div class="breadcrumbs"> ...
80
votes
7answers
13k views

embedding background image data into css as base64, good or bad practice

The other day I was looking at the source of a greasemonkey userscript and noticed the following in their css: .even { background: #fff ...
78
votes
17answers
3k views

Common Web UI Styles

I have to present a prototype of an web app in the following days to one of my clients, the thing is I'm not so good at CSS and worst of all I'm almost never happy with the results I get. Coding the ...
77
votes
11answers
19k views

Google's Imageless Buttons

There have been a few articles recently about Google's new imageless buttons: http://stopdesign.com/archive/2009/02/04/recreating-the-button.html http://stopdesign.com/eg/buttons/3.0/code.html ...
77
votes
26answers
26k views

Why can't I save CSS changes in FireBug?

FireBug is the most convenient tool I've found for editing CSS - so why isn't there a simple "Save" option? I am always finding myself making tweaks in FireBug, then going back to my original .css ...
76
votes
2answers
2k views

What does this CSS shorthand font syntax mean?

I'm seeing the following CSS declaration in a stylesheet: font: 12px/18px ... What does the 12px/18px part mean exactly?
76
votes
14answers
39k views

Word-wrap in a html table

I've been using word-wrap: break-word to word wrap text in divs and spans, but it doesn't seem to work in table cells. I have a table set to width:100%, with one row and two columns. Text in ...
73
votes
6answers
23k views

Truncating long strings with CSS: feasible yet?

Is there any good way of truncating text with plain HTML and CSS, so that dynamic content can fit in a fixed-width-and-height layout? I've been truncating server-side by logical width (i.e. a ...
73
votes
5answers
97k views

How to align content of a div to the bottom with css?

Say I have a page: <body> <div id="header"> <h1>some title</h1> some header content </div> <div id="content"> Some content </div> </body> ...
73
votes
9answers
50k views

Best jQuery rounded corners script?

I've been looking at various scripts for adding automatic rounded corners to a div using jQuery but there are loads of plugins available, none of which seem perfect. So, does anybody know of a script ...
73
votes
10answers
9k views

What is the difference between visibility:hidden and display:none

Both of these result in the element not being visible. Are these synonyms?
72
votes
5answers
8k views

text-overflow:ellipsis in Firefox 4? (and FF5)

The text-overflow:ellipsis; CSS property must be one of the few things that Microsoft has done right for the web. All the other browsers now support it... except Firefox. The Firefox developers have ...
72
votes
5answers
28k views

Is it possible to combine a background image and CSS3 gradients?

I want to use CSS3 gradients for my background color and then apply a background-image to apply some sort of light transparent texture. Is this possible?

1 2 3 4 5 1192