Isofarro sez: This raises the question, do we keep a reference to these resources here, somewhere else or get rid of them. I am a hoarder by nature, so I'm loath to get rid of anything that may be of some use to someone. We clearly can't just pretend table based layouts didn't exist. Ideas? |
Isofarro says: This raises the question, do we keep a reference to these resources here, somewhere else or get rid of them. I am a hoarder by nature, so I'm loath to get rid of anything that may be of some use to someone. We clearly can't just pretend table based layouts didn't exist. Ideas? |
The separation between content (HTML) and its presentation (CSS) is advantageous to website developers because changes to the presentation and layout will not affect the content of the website, only how it is presented to the user. Changing the colour scheme from red to blue does not change the content in any way, only the presentation of that content.
With that distinction in mind, what website designers should focus on is using cascading style sheets for their design, but in such a way that the HTML page does not rely on the stylesheet to display. The stylesheet is used by browsers that understand them. This method makes your HTML pages available to a wider audience, plus has the side effect of simplifying the HTML markup, thus making future updates much easier.
Designing for the web requires some practical thought. There won't be a situation where a website will look the same in all user agents, this is a myth perpetuated by designers from a Desktop Publishing background, see WebIsNotPaper. Every user that visits your site will have his own combination of hardware, software, user preferences, and connections. There is simply no "one right answer" to web design other than:
You won't always know what browser your users are using, whether or not they are using a monitor (not to mention if is graphical or at least _this_ big). You won't know how many pixels are available (if there are any pixels at all!) -- Google's site indexer has no concept of pixel placement, it sees your website as a stream of text.
So there are two accurate answers to "Which resolution should I design for?":
And nothing in between. Limiting the list of "supported" browsers will only cause problems later (owing to corporate pressures and newer browser releases). Web designers who develop websites for an Internet Explorer only audience will be in for a shock when AOL switches over to a Mozilla browser and these sites fail to work.
The concerning question is how well cascading stylesheets are implemented in browsers. It shouldn't be a problem at all since HTML should be written without requiring CSS to be available, which results in a bland looking presentation in non-CSS browsers.
The problem arises from a business, or marketing, perspective when a website looks great in Internet Explorer, but looks like a "hello world" attempt at HTML in something like Netscape 4. Here there are three methods of resolving the contentious problem:
(Zeldman offers another solution in his article Fear of Style Sheets -- http://www.alistapart.com/stories/fear/ )
CSS can't handle every conceivable layout requirement just yet, but as the support improves CSS will play a large role in making things easier for the web designer, the maintenance and update team, the web master and the audience as a whole. Take heed of the following practical advice from Bertilo Wennergren:
Companies and businesses are so tied-up in knots about the look and branding of their company on-line that they miss that content is an important part of branding. No-one wants to be seen as the flashy company with no substance.
Isofarro says: This raises the question, do we keep a reference to these resources here, somewhere else or get rid of them. I am a hoarder by nature, so I'm loath to get rid of anything that may be of some use to someone. We clearly can't just pretend table based layouts didn't exist. Ideas?
Older table-based resources (for those forced into stone-age webdesign):