Tagged Questions
CSS (Cascading Style Sheets) is a language used to control the visual presentation of HTML and XML documents including (but not limited to) colors, layout and fonts.
873
votes
13answers
493k views
How to set cellpadding and cellspacing in CSS?
In inline HTML, the table styles cellpadding and cellspacing can be set
<table cellspacing="1" cellpadding="1">
How would this be accomplished using a CSS stylesheet?
823
votes
18answers
265k views
CSS rule to disable text selection highlighting
For anchors that act like buttons (for example, Questions, Tags, Users, etc. at the top of the Stack Overflow page) or tabs, is there a CSS standard way to disable the highlighting effect if the ...
750
votes
8answers
213k 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:
CSS:
input[placeholder], ...
647
votes
17answers
560k views
How to center a div in a div - horizontally?
How do I horizontally center a div in a div with CSS (if it's possible at all)?
The outer div has 100%:
<div id="outer" style="width:100%">
<div id="inner">Foo foo</div>
...
646
votes
7answers
24k 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;
...
566
votes
15answers
534k views
CSS: semi-transparent background, but not text
Is it possible, using CSS alone, to make the background of an element semi-transparent, but have the text of the element be non-transparent? I would like to accomplish this without having the text and ...
498
votes
16answers
569k 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?
494
votes
25answers
242k 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 ...
480
votes
13answers
290k 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 ...
428
votes
15answers
25k views
Managing CSS Explosion
I have been heavily relying on CSS for a website that I am working on. Right now, all the CSS styles are being applied on a per tag basis, and so now I am trying to move it to more of an external ...
413
votes
23answers
77k 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 ...
399
votes
11answers
17k views
Is the recommendation to include CSS before JavaScript invalid?
In countless places online I have seen the recommendation to include CSS prior to JavaScript. The reasoning is generally, of this form:
When it comes to ordering your CSS and JavaScript, you want ...
344
votes
10answers
90k 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?
336
votes
13answers
226k 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 ...
328
votes
16answers
209k 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?
314
votes
26answers
178k 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 ...
291
votes
15answers
210k views
Make CSS Div Width Equal To Contents
I have a layout similar to:
<div>
<table>
</table>
</div>
I would like for the div to only expand to as wide as my table becomes.
282
votes
10answers
111k 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 ...
275
votes
9answers
116k 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?
275
votes
7answers
88k 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 ...
269
votes
6answers
84k 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 ...
266
votes
23answers
67k 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 ...
260
votes
3answers
83k views
Are there hosted jQuery UI themes anywhere? [duplicate]
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 ...
258
votes
7answers
109k 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">
...
244
votes
13answers
337k 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?
242
votes
22answers
115k 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 ...
236
votes
15answers
152k 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 ...
233
votes
11answers
74k views
Click through a DIV to underlying elements
I have a div that has background:transparent, along with border. Underneath this div, I have more elements.
Currently, I'm able to click the underlying elements when I click outside of the overlay ...
227
votes
10answers
304k 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>
...
223
votes
10answers
106k views
Is it possible to include one css file into another?
Is it possible to include one css file into another?
215
votes
14answers
125k views
Convert an image to grayscale in HTML/CSS
Is there a simple way to display a color bitmap in grayscale with just HTML/CSS? It doesn't need to be IE-compatible (and I imagine it won't be) -- if it works in FF3 and/or Sf3, that's good enough ...
207
votes
14answers
282k views
Stretch and scale CSS background
Is there a way to get a background in CSS to stretch or scale to fill its container?
205
votes
2answers
24k views
Why do browsers match CSS selectors from right to left?
CSS Selectors are matched by browser engines from 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 ...
202
votes
15answers
325k views
How to style a <select> dropdown with CSS only without JavaScript?
Is there a CSS-only way to style a <select> dropdown?
I need to style a <select> form as much as humanly possible, without any JavaScript. What are the properties I can use to do so in ...
200
votes
21answers
6k 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 ...
196
votes
8answers
221k views
HTML/CSS positioning “float: bottom”
Given the following HTML:
<div id="container">
<!-- Other elements here -->
<div id="copyright">
Copyright Foo web designs
</div>
</div>
I would like the div ...
196
votes
23answers
45k views
Any recommendations for a CSS minifier? [closed]
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 ...
195
votes
7answers
49k views
Is embedding background image data into CSS as Base64 good or bad practice?
I was looking at the source of a greasemonkey userscript and noticed the following in their css:
.even { background: #fff ...
189
votes
15answers
227k views
Space between two rows in a table?
Is this possible via CSS?
I'm trying
tr.classname {border-spacing:5em}
to no avail. Maybe I'm doing something wrong ?
187
votes
16answers
27k 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?
...
187
votes
12answers
68k views
Mime type for WOFF fonts?
What mime type should WOFF fonts be served as?
I am serving truetype (ttf) fonts as font/truetype and opentype (otf) as font/opentype, but I cannot find the correct format for WOFF fonts.
I have ...
186
votes
9answers
174k views
Need a unordered list without any bullets
I have created a unordered list, that is very useful for me to append and remove list item using jQuery.. I feel the bullets in the unordered list is disturbing much, so I want to remove it. How its ...
184
votes
26answers
36k views
What is the best way to create rounded corners using CSS? [closed]
What is the best way to create rounded corners using CSS?
178
votes
3answers
41k views
Creating a Radial Menu in CSS
How do I create a menu which looks like this...
Link to PSD
I don't want to use the PSD images. I would prefer using icons from some package like FontAwesome and have the backgrounds/css generated ...
175
votes
17answers
131k 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 ...
172
votes
16answers
105k 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:
...
166
votes
12answers
75k views
How to make twitter bootstrap menu dropdown on hover rather than click
I'm using bootstrap for the first time and really liking it - but one thing I'd like to do is have my menu automatically drop down on hover over, rather than having to click the menu title. I'd also ...
166
votes
11answers
35k views
How do you keep parents of floated elements from collapsing?
Although elements like <div>s normally grow to fit their contents, using the float property can cause a startling problem for CSS newbies: if floated elements have non-floated parent elements, ...
164
votes
6answers
5k views
Is it possible to make a div 50px less than 100% in CSS3?
Is it possible to make a div 50px less than 100% in pure CSS? I want the <div> to be only 50px less than 100%. I don't want any JavaScript.
163
votes
5answers
5k views
How does this CSS produce a circle?
This is the CSS:
div {
width: 0;
height: 0;
border: 180px solid red;
border-radius: 180px;
}
How does it produce the circle below?
Suppose, if a rectangle width is 180 pixels and ...

