my website fits perfect on my laptop but on my pc it moves everything everywhere. i been told you can add code so that the website auto reizes the webpage to fit into peoples browsers. any ideas on how we do this for all browsers or is it just ie you can do it for
I think what youโre looking for is a liquid layout. This means that depending on the screen size everything will be a certain percent of the screen
Example
HTML
[code]
This is only an example
[/code]CSS
[code].container {
width:60%;
}
.container p {
width:80%;
}[/code]
By doing this the container will always be 60% of any given screen and the paragraph will be 80% of the container.
It would be really great to be able to use a container that will help you adjust all the text that goes within your web page.
Though it has been something that has been commonly used, the problem is with mobile gadgets that are trying to access the web page with the settings to view them as a desktop computer.
That problem is going to be the big issue whether your page would take it as a mobile device and resize to its screen but by default, the standard size should be used.