Tagged Questions
637
votes
90answers
75k 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 ...
231
votes
22answers
131k 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 ...
208
votes
3answers
50k 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>
...
200
votes
15answers
209k 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 ...
182
votes
16answers
40k 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 ...
178
votes
6answers
200k 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 ...
159
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 ...
152
votes
20answers
104k 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 ...
139
votes
12answers
99k 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?
127
votes
19answers
90k 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 ...
111
votes
9answers
51k 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 ...
109
votes
12answers
84k 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 ...
106
votes
10answers
189k 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?
105
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
10answers
78k 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?
...
97
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 ...
88
votes
16answers
43k 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 ...
82
votes
13answers
134k views
Stretch and Scale CSS Background
Is there any way to get a background in CSS to stretch or scale to fill its container?
77
votes
10answers
95k 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 ...
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
...
71
votes
11answers
5k views
Would you recommend starting from HTML5 & CSS3 for beginners? [closed]
I am a middle school student trying to dive into the world of web designing and developing.
I have been interested in (using) the web since I was little, but now I want to be in the "creating" side. ...
67
votes
25answers
6k views
Tables instead of DIVs
Under what conditions should you choose tables instead of DIVs in HTML coding?
65
votes
9answers
6k views
How to show popup message like in stackoverflow
I would like to add a popup message like the one that appears on stackoverflow when I am not logged in and I try to use voting buttons.
What is the best method for achieving that?
Is it done using a ...
60
votes
7answers
123k views
CSS fixed width in a span
Within an unordered list.
<li><span></span> The lazy dog.</li>
<li><span>AND</span> The lazy cat.</li>
<li><span>OR</span> The active ...
58
votes
13answers
37k views
CSS3's border-radius property and border-collapse:collapse don't mix. How can I use border-radius to create a collapsed table with rounded corners?
Edit - Original Title: Is there an alternative way to achieve border-collapse:collapse in CSS (in order to have a collapsed, rounded corner table)?
Since it turns out that simply getting the table's ...
58
votes
5answers
116k views
CSS div element - how to show horizontal scroll bars only?
I have a div container and have defined its style as follows:
div#tbl-container
{
width: 600px;
overflow: auto;
scrollbar-base-color:#ffeaff
}
This gives me both horizontal and ...
56
votes
7answers
3k views
CSS: Truncate table cells, but fit as much as possible
Meet Fred. He's a table:
<table border="1" style="width: 100%;">
<tr>
<td>This cells has more content</td>
<td>Less content here</td>
...
55
votes
14answers
86k 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 ?
55
votes
8answers
59k views
How can I make a TextArea 100% width without overflowing when padding is present in CSS?
I have the following HTML snippet being rendered.
<div style="display: block;" id="rulesformitem" class="formitem">
<label for="rules" id="ruleslabel">Rules:</label>
...
55
votes
14answers
17k views
How do you get the footer to stay at the bottom of a Web page?
I have a simple 2-column layout with a footer that clears both the right and left div in my markup. My problem is that I can't get the footer to stay at the bottom of the page in all browsers. It ...
51
votes
17answers
82k views
How to add some non standard font to website?
Is there any way to add some custom font on website without using images, flash or some other graphics. For example, I was working on some wedding website, and I was found a lot of nice fonts for that ...
49
votes
5answers
21k views
Using relative URL in CSS file, what location is it relative to?
When defining something like a background image URL in a CSS file, when using a relative URL, where is it relative to? For example:
/stylesheets/base-styles.css:
div#header {
...
47
votes
9answers
53k views
Dynamically retrieve Html element (X,Y) position with JavaScript
I want to know how to get X and Y postion of HTML elements such as img, div in JavaScript.
thanks
47
votes
18answers
37k views
Autosizing textarea using prototype
I'm currently working on an internal sales application for the company I work for, and I've got a form that allows the user to change the delivery address.
Now I think it would look much nicer, if ...
46
votes
8answers
91k views
CSS: How to overlay images
I want to overlay one image with another using CSS. An example of this is the first image (the background if you like) will be a thumbnail link of a product, with the link opening a lightbox / popup ...
46
votes
10answers
54k views
Vertical (rotated) text in HTML table
Is there a (portable) way to rotate text in a HTML table cell by 90°?
(I have a table with many columns and much text for the headings, so I'd like to write it vertically to save space.)
46
votes
5answers
48k views
vertical alignment of elements in a div
I have a div with two images and an h1. All of them need to be vertically aligned within the div, next to each other. One of the images needs to be absolute positioned within the div.
What is the css ...
45
votes
11answers
1k views
Am I suffering “divitis”? (CSS especialist needed)
I've read lots of articles that condemn the excessive use of divs. I have a feeling that I might be doing that in the following mark up:
HTML:
<div id="header">
<div ...
45
votes
10answers
12k views
Can you do this HTML layout without using tables?
Ok, I had a simple layout problem a week or two ago. Namely sections of a page needed a header:
+---------------------------------------------------------+
| Title ...
43
votes
9answers
45k views
How to write a:hover in inline CSS?
I have a case where i must write inline CSS code.
And i want to apply hover style on an anchor.
How to write a:hover in inline css inside the html style attribute?
43
votes
17answers
36k views
HTML table with fixed headers?
Is there a cross-browser CSS/JavaScript technique to display a long HTML table such that the column headers stay fixed on-screen and do not scroll with the table body. Think of the "freeze panes" ...
43
votes
16answers
64k views
I need my html table's body to scroll and its head to stay put
I am writing a page where I need an html table to maintain a set size. I need the headers at the top of the table to stay there at all times but I also need the body of the table to scroll no matter ...
41
votes
19answers
1k views
Should css class names like 'floatleft' that directly describe the attached style be avoided?
Lots of websites use class names like floatleft, clearfloat, alignright, small, center etc that describe the style that is attached to the class. This seems to make sense so when writing new content ...
41
votes
11answers
6k views
Ignore whitespace in HTML
Is there anything in HTML/CSS that tells the browser to ignore whitespace completely?
So many times when you want to put, say, two images next to each other - you try desperately to keep the HTML ...
41
votes
14answers
53k views
How do I force a DIV block to extend to the bottom of a page even if it has no content?
In the markup shown below, I'm trying to get the content div to stretch all the way to the bottom of the page but it's only stretching if there's content to display. The reason I want to do this is so ...
41
votes
24answers
3k views
How do you test layout design across multiple browsers/OSs?
What is a good method for testing website layout designs across multiple browsers and operating systems?
40
votes
4answers
2k views
HTML5 Boilerplate vs. HTML5 Reset
Hey everyone — HTML5 Boilerplate and HTML5 Reset are two HTML, CSS, and JavaScript templates with a lot of modern best practices built-in. Their goals are largely the same:
Fast, robust, ...
40
votes
14answers
12k views
Hyphens or underscores in CSS and HTML identifiers? [closed]
As both hyphen (-) and underscore (_) are valid characters in CSS and HTML identifiers, what are the advantages and disadvantages using one or the other? I prefer writing CSS class names with hyphens ...
39
votes
8answers
7k views
How to remove the space between inline-block elements?
Given this HTML:
<p>
<span> Foo </span>
<span> Bar </span>
</p>
and this CSS:
span {
display:inline-block;
width:100px;
}
as a result, there ...
39
votes
14answers
67k views
How do I get a div to float to the bottom of its container?
I have floated images and inset boxes at the top of a container using float:right (or left) many times. Recently I hit a need to float a div at the bottom right corner of another div with the normal ...