19
votes
14answers
1k views
Why use tables to structure your layout?
looking at the soure code for stackoverflow, i noticed they have used tables and inline CSS quite a bit. also something i found odd was use of inline table attribute formatting.
<table …
19
votes
11answers
3k 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 …
17
votes
11answers
3k views
Who has solved the long-word-breaks-my-div problem? (hint: not stackoverflow)
Ever since switching from TABLE-layout to DIV-layout, one common problem remains:
PROBLEM: you fill your DIV with dynamic text and inevitably there is a super-long word that extends over the edge of …
9
votes
4answers
12k 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 …
9
votes
7answers
9k 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 …
9
votes
21answers
3k views
div class vs id
When using divs when is it best to use a class vs id?
Is it best to use class, on say font variant or elements within the html? Then use id for the structure/containers?
This is something I've …
8
votes
9answers
3k views
CSS Layouts - How to position two divs horizontally within another div
I haven't played with CSS for too long a time and am without references at the moment. My question should be fairly easy but googling isn't bringing up a sufficient answer. So, adding to the …
8
votes
4answers
557 views
HTML footer problem
Hello
Is it possible to create a footer div that sits at the bottom of a site regardless of how much information is present in the middle?
Currently the div I have is positioned depending on how …
6
votes
12answers
859 views
Why should I use ‘li’ instead of ‘div’?
I'm not sure why I need to use ul-li vs simply using divs when listing items. I can make both look exactly the same so where is the functional advantage to creating an unordered list vs lining up …
6
votes
10answers
485 views
What can’t be done in CSS yet?
A while ago I was trying to figure out a way of doing this without using a table layout:
<table>
<tr><td rowspan="2">Left column</td></tr>
<tr><td>Right …
6
votes
5answers
677 views
Yet Another Divs vs Tables Question: Forms
[Meta-note:] I was browsing the question page, getting really tired of "DIVS vs Tables" "When to use tables vs DIVS" "Are Divs better than Tables" "Tables versus CSS" and all the questions that ask …
6
votes
9answers
8k views
Div 100% height works on Firefox but not in IE. What to do?
I have a container div that holds two internal divs; both should take 100% width and 100% height within the container.
I set both internal divs to 100% height. That works fine in Firefox, however in …
5
votes
5answers
4k views
How to create div to fill all space between header and footer div
I'm working on moving from using tables for layout purposes to using divs (yes, yes the great debate). I've got 3 divs, a header, content and footer. Thea header and footer are 50px each. How do I …
5
votes
10answers
4k views
How to force a DIV block to extend to the bottom of a page, even if it has no content?
Hi,
I'm trying to get the content div to stretch all the way to the bottom of the page but so far, its only stretching if theres actual content to display. The reason I want to do this is so if there …
5
votes
9answers
5k views
DIV with overflow:auto and a 100% wide table problem
I hope someone might be able to help me here. I've tried to simplify my example as best I can.
I have an absolutely positioned DIV, which for this example I've made fill the browser window. This div …
