admin管理员组文章数量:1404923
Recently i got one issue while using a frameset in my Jsp Page.
The Code is :
<html>
<frameset rows="8%,*" border="0" >
<frame src="HeaderUi.jsp" name="header" scrolling="no" style="border-bottom:5px solid #630000;min-height:50px;">
<frameset cols="215px,540px,250px" border="0" >
<frame src="webSearchUi" name="search">
<frameset rows="65%,*" border="0" >
<frame src="webMainPageUi" name="mainPage" scrolling="yes" style="border:1px dotted #7D7D7D; border-top:0px; border-bottom:0px dashed #5c5c5c">
<frame src="webEventPanelUi" name="eventPanel" style="border:1px dotted #7D7D7D; border-top:1px solid #7D7D7D; border-bottom:0px dashed #5c5c5c">
</frameset>
<frame src="webDataPanelUi" name="dataPanel" style="border-style:solid;border-width:0pt;border-color:66CC33"></frameset>
</html>
In this i want to set a fixed width to frameset and display centrally align, Fixed Width Should be 1000px and Centrally align, When i tried this its working properly in IE by using margin auto as ashown in code above, but showing Problem in Chrome and Firefox. Please help me out from this Problem...
Recently i got one issue while using a frameset in my Jsp Page.
The Code is :
<html>
<frameset rows="8%,*" border="0" >
<frame src="HeaderUi.jsp" name="header" scrolling="no" style="border-bottom:5px solid #630000;min-height:50px;">
<frameset cols="215px,540px,250px" border="0" >
<frame src="webSearchUi" name="search">
<frameset rows="65%,*" border="0" >
<frame src="webMainPageUi" name="mainPage" scrolling="yes" style="border:1px dotted #7D7D7D; border-top:0px; border-bottom:0px dashed #5c5c5c">
<frame src="webEventPanelUi" name="eventPanel" style="border:1px dotted #7D7D7D; border-top:1px solid #7D7D7D; border-bottom:0px dashed #5c5c5c">
</frameset>
<frame src="webDataPanelUi" name="dataPanel" style="border-style:solid;border-width:0pt;border-color:66CC33"></frameset>
</html>
In this i want to set a fixed width to frameset and display centrally align, Fixed Width Should be 1000px and Centrally align, When i tried this its working properly in IE by using margin auto as ashown in code above, but showing Problem in Chrome and Firefox. Please help me out from this Problem...
Share Improve this question edited Sep 13, 2011 at 14:34 BalusC 1.1m376 gold badges3.7k silver badges3.6k bronze badges asked Sep 13, 2011 at 6:39 Mayur MateMayur Mate 331 silver badge4 bronze badges 4- Your code contains three frameset's: rows and cols and again rows. About what you talk? And how about frameset closing tags? – Andrew D. Commented Sep 13, 2011 at 6:57
- hi Andrew, I want to just fixed a width of First frameset and showwn centrally. – Mayur Mate Commented Sep 13, 2011 at 7:09
-
First frameset is
frameset rows="8%,*"
or other? – Andrew D. Commented Sep 13, 2011 at 7:12 - Yes First frameset is frameset rows="8%,*" – Mayur Mate Commented Sep 13, 2011 at 8:56
1 Answer
Reset to default 4Try to use next HTML markup:
<frameset cols="*,1000px,*" border="0">
<frame src="about:blank" />
<!-- Next frameset is centered horizontally and have width:1000px -->
<!-- Tested in IE8,Chrome13,Opera11.50,Safari5,FF7 -->
<frameset rows="8%,*" border="0">
<frame src="HeaderUi.jsp" name="header" scrolling="no" style="border-bottom:5px solid #630000;" />
<frameset cols="210px,540px,*" border="0">
<frame src="webSearchUi" name="search" />
<frameset rows="65%,*" border="0" >
<frame src="webMainPageUi" name="mainPage" scrolling="yes" style="border:1px dotted #7D7D7D; border-top:0px; border-bottom:0px dashed #5c5c5c" />
<frame src="webEventPanelUi" name="eventPanel" style="border:1px dotted #7D7D7D; border-top:1px solid #7D7D7D; border-bottom:0px dashed #5c5c5c" />
</frameset>
<frame src="about:blank" />
</frameset>
</frameset>
<frame src="about:blank" />
</frameset>
本文标签: javascriptHow to Set Fixed Width of Frameset and centrally AlignStack Overflow
版权声明:本文标题:javascript - How to Set Fixed Width of Frameset and centrally Align? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744864017a2629239.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论