125
votes
67answers
11k views
Why not use tables for layout in HTML?
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 …
60
votes
16answers
1k views
Are fluid websites worth making anymore?
Hey guys,
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 …
39
votes
11answers
2k views
How would YOU do this: Tables or CSS?
Part I
This layout can be done quite simply with 2 HTML tables, one nested inside the other, or even with a single table.
It can also be done with CSS, though it might involve a little more …
29
votes
13answers
2k views
DIV’s vs Tables or CSS vs. Being Stupid
I know that tables are for tabular data, but it's so tempting to use them for layout ... i can handle DIV's to get a three column layout, but when you got 4 nested DIV's, it get tricky.
Is there a …
20
votes
9answers
2k 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 …
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 …
17
votes
7answers
741 views
What is the best absolute width for a webpage?
Assuming a fluid layout is not an option (since that is a different discussion all together), what is the recommended width for a site layout? What are the pros and cons of different sizes?
16
votes
9answers
758 views
Why Google and Twitter use table layout? [closed]
Possible Duplicate:
Does it make sense to use the <table> tag on a “modern” website?
Everywhere I go I see don't use table layout, it's evil, even Google says that, so why …
16
votes
27answers
1k views
Why would you choose a fixed-width design?
Update:
I deleted my motivation because it seems to distract readers. This is not about "why don't you make your window smaller". See the screenshots and you will see obstructed text because of fixed …
12
votes
7answers
114 views
What is the best strategy for using color scheming tools for non-designer developers?
When making color choices during web design, I use free online tools such as ColorSchemer in which I:
click on a color
use the colors it suggests for me
This makes my designs look better than if I …
12
votes
9answers
3k views
Graph visualization code in javascript?
Hi. I have a data structure that represents a directed graph, and I want to render that dynamically on an HTML page. Does anyone know of any javascript code that can do a reasonable job with graph …
11
votes
5answers
2k views
CSS horizontal table cell spacing: how?
Hi,
Hopefully this is an easy one but I have not found a solution. I want to put space between columns on a table.
Example
| Cell |<- space ->| Cell |<- space ->| Cell |
An important …
11
votes
18answers
1k views
Firefox vs IE vs Chrome vs Safari…
Currently I am designing a website and I am finding it VERY difficult to display the website perfect on ALL browsers.
Is there any rules, suggestions etc to follow?
Thanks
11
votes
21answers
994 views
Which Layout Manager do you use?
What java GUI layout manager does everyone use? Lately, I have been using MigLayout, which has some powerful component controls. Just wanted to see what other developers are using other than the …
10
votes
5answers
757 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, …
