|
Posted by Andy Dingley on 01/15/07 15:53
aa wrote:
> what is the most common screen resolution these days?
208 x 208 is increasingly popular.
> For what resolution do you usualy design?
I don't.
> What is the technique to designe an HTMP page which would automatically fit
> into the resolution set on a particalar Windows installation?
Fluid design and not caring what screen resolution the user has.
1. You care about window size, not screen size.
2. You don't need to know this: code in a fluid style and let the
user's browser worry about how to render it.
3. A good way to achieve a fluid design is to use simple HTML and
competent CSS (try readign "Head First HTML & CSS" for an intro.
4. Don't _ever_ mess dynamically with the user's window size, window
state, or browser settings.
5. JavaScript is of little use here. A "JavaScript solution" you're
offered is probably quite wrongly intentioned from the outset.
[Back to original message]
|