• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

* Poll : webmaster / html guru - CSS vs table webpage layout ?

jimmyhaha

Platinum Member
which one u use ?

pros & cons ?

my major concern is that CSS mess up all the layout on old 4.x browser like netscape.

Other than that, CSS seems a more logical way to organize content.

What do u think ?

 
CSS, to hell with backwards compatibility. But depending on the complexity of the site, tables are fine.
 
Tables are fine for not so complicated pages... and complicated pages SUCK!

... besides I use Flash. 😀
 
often, you'll need to use both.

these days, our team (unspecified big web company) uses css for major component layout, and tables usually to handle data formatting within that.

the Netscape 4.x market is small enough to not care anymore, but we usually do a browser detect to tell the user they need to upgrade.

The best way to deal with it is to look at the design and choose your technique based on that. tables are often better and managing designs that have interdependant sections that need to flex with each other depending on content length.

anyone who says one method absolutely and always probably doesn't know their stuff as well as they should.
 
I prefer to use tables. I usually make the main layout with tables and stick in areas using css where I want stuff to appear. Typically I just play around with everything til I get what I want to see.
 
Originally posted by: nourdmrolNMT1
i tried using css once, but when i previewed it in opera it was sent to hell and back. But now i use tables with css styling http://www.brownwestern.com/main13.htm and it looks better on ANY browser other than netscape 3 and back.

USE TABLES OR YOU BETTER HOPE NO ONE WITH OPERA VIEWS THE PAGE!!!


MIKE
if you use css properly opera will have no problems displaying the page, more often more correctly than other browsers

 
did you ever see what my css page looked like? all i did was use css to position things, and most of it was right, but it butchered other parts of it. I am using CSS for style's and colors but wont use it for positioning.

MIKE
 
I have done the same and it looks the same in all browsers..... except old ones that only support css1 and not css2
 
Tables to put stuff where I want it. CSS to make it look right. And yes, you can make CSS work with netscape, people are just too lazy to write it out that's all. Me, I work for UCD, if I made stuff non-netscape compatible I'd get fired.
 
Back
Top