Search Results

1
vote

Are liquid layouts still relevant?

Yes - you don't know what resolution the reader is using, or what size screen - or even if accessibility is required/used. As mentioned above, not everybody knows about full page zoom - I know abou …
9
votes

What should a developer know before building a public web site?

Valid (X)HTML - with the appropriate tags. No broken links (See above about relative links) …
3
votes

What are the quickest and easiest ways to ensure existing web pages display well on mobile platforms?

Opera has an option to view pages as through a mobile device. I've found it useful in the past. …
0
votes

HTML <head> best practices

There is a related question here that may help add some light regarding the order of the tags. Gener …
1
vote

Providing alternative images if Adobe Flash isn’t available

I use the following code for graceful degradation. It works well. <!--[if !IE]> --> <object type="application/x-shockwave-flash" data="flash.swf" width="500" height="100 …
5
votes

Centre Content Horizontally in Page

Set your div CSS as follows: #container { width: 800px; margin: 0 auto; } …