I have a to make web page containing 2 columns. This is done.
Now what I would like to insert in the code is something like this:
The 2 columns should be full screen on any resolutions. Something like the page would adapt to the monitor resolution.
The percent would be 80% for the first column 20% for the second one.
What I don't know - is how to do that. Would a table resolve this problem?
What would be the code for this?
Using HTML and CSS you can only make it fill 100% of the browser viewport. If you want it to fill 100% of the screen resolution and have scrollbars so that your visitor can scroll to see the parts that don't fit within the browser viewport (due to the browser itself, any fixed toolbars on the screen, or simply because the person doesn't have their browser maximized) then you'd need to use JavaScript to set the size.
Bookmarks