Sharath182
08-10-2007, 11:14 AM
hey i have a page wit 3 frames how do I center the whole of the frameset since der is no body content wen designing a frameset. (I dont want my page to be streched)Do I hav to use css. here is the code:
-----------------------------------------------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>New</title>
<style type="text/css">
<!--
body {
margin-left: 30px;
margin-right: 30px;
}
-->
</style></head>
<frameset rows="254,*" cols="*" frameborder="no" border="0" framespacing="0">
<frame src="mainTop.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
<frameset rows="*" cols="121,*" framespacing="0" frameborder="no" border="0">
<frame src="mainLeft.html" name="leftFrame" scrolling="No" noresize="noresize" id="leftFrame" title="leftFrame" />
<frame src="mainRight.html" name="mainFrame" id="mainFrame" title="mainFrame" />
</frameset>
</frameset>
<noframes><body>
</body>
</noframes></html>
------------------------------------------------------------------------------
-----------------------------------------------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>New</title>
<style type="text/css">
<!--
body {
margin-left: 30px;
margin-right: 30px;
}
-->
</style></head>
<frameset rows="254,*" cols="*" frameborder="no" border="0" framespacing="0">
<frame src="mainTop.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
<frameset rows="*" cols="121,*" framespacing="0" frameborder="no" border="0">
<frame src="mainLeft.html" name="leftFrame" scrolling="No" noresize="noresize" id="leftFrame" title="leftFrame" />
<frame src="mainRight.html" name="mainFrame" id="mainFrame" title="mainFrame" />
</frameset>
</frameset>
<noframes><body>
</body>
</noframes></html>
------------------------------------------------------------------------------