PDA

View Full Version : Html


kausikporel
Apr 17, 2004, 01:09 AM
hi,
I want to create web pages which should independent of screen resolution, i.e. I develop the page in the screen size 800x600 but when I viewing it in the screen resolution 1024 x 764 then positioning of the page and component on it changes i.e layout changes. How can I prenevt this. Please help me.
kausik

retsoksirhc
Apr 26, 2004, 04:00 PM
You can use tables with HTML which should help with the alignment and layout of the page. I heard DIV's (another type of HTML) are supposed to bery very good with this type of situation but they are complicated. If you feel up to the challenge you could learn CSS which might help a little with layout also. You can learn a lot from www.w3schools.com

cechise
May 18, 2004, 03:23 AM
The thing is to position your stuff relativley so that it all hangs together.

Try putting all your content in a div-tag. Then place the div tag inside a table wich is 100% wide and has one cell. Depending on how you set the alingment in the cell the contens will all move to the right, left, or center.

This is not very complexed but the basic principle is very useful.