I've done different mini web projects, and I usually use framesets to organize links, titles, and so on...but the problem comes to different monitors or browsers. The text in the framesets will sometimes be cut off or there may be extra space in parts of the frameset. So my question:
Is it possible to "auto adjust/size" the frameset to the computer and browser? Meaning, so it can look exactly the same on one computer as it does on another.
Here is an example of the code I use usually for my framesets:
Is it possible to "auto adjust/size" the frameset to the computer and browser? Meaning, so it can look exactly the same on one computer as it does on another.
Here is an example of the code I use usually for my framesets:
Code:
<HTML>
<HEAD>
<TITLE>Test</TITLE>
</HEAD>
<FRAMESET rows=10%,85%,5%>
<FRAME SRC="header.html" noresize scrolling=no frameborder=no>
<FRAMESET cols=10%,85%,10%>
<FRAME SRC="left_bar.html" frameborder=no noresize scrolling=no>
<FRAME SRC="Main.html" frameborder=no noresize name=main>
<FRAME SRC="right_bar.html" frameborder=no noresize scrolling=no>
</FRAMESET>
<FRAME SRC="footer.html" frameborder=no noresize scrolling=no>
</FRAMESET>
</HTML>