如何为主页添加全局框架集背景图像?

发布于 2024-12-04 14:21:57 字数 1531 浏览 2 评论 0原文

我想为我的 Jsp 页面添加一个背景页面,在此我使用了一个框架集,当我为主框架集使用背景图像时,它在 FF 和 IE 中显示问题, 代码是:

<frameset cols="*,1020px,*" border="0" class="bg" style="images/background.jpg">
    <frame src="about:blank"  /> 
        <!-- Next frameset is centered horizontally and have width:1020px --> 
        <!-- 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="220px,540px,*" border="0" style="background:#000">  
                    <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>
                    <frame src="about:blank" class="Bg" />   
                </frameset> 
        </frameset>  
<frame src="about:blank" /> </frameset> 

在此代码中我想使用背景图像。 提前致谢 马尤尔·马特

I want to add a backgound page for my Jsp page, In this i used a frameset when i used a backgound image for a main frameset its showing problem in FF and IE,
Code Is:

<frameset cols="*,1020px,*" border="0" class="bg" style="images/background.jpg">
    <frame src="about:blank"  /> 
        <!-- Next frameset is centered horizontally and have width:1020px --> 
        <!-- 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="220px,540px,*" border="0" style="background:#000">  
                    <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>
                    <frame src="about:blank" class="Bg" />   
                </frameset> 
        </frameset>  
<frame src="about:blank" /> </frameset> 

In This Code i want to use a background-image.
Thanks in Advance
Mayur Mate

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

喜你已久 2024-12-11 14:21:57

如果您要使用属性style,您应该按以下方式编写CSS样式:

style =“property1:value1; property2:value2”

在您的情况下,代码应该是:

<frameset cols="*,1020px,*" border="0" class="bg" style="background: url('images/background.jpg');">

If you are going to use attribute style you should write there css styles in the following way:

style="property1: value1; property2: value2"

in your case the code should be:

<frameset cols="*,1020px,*" border="0" class="bg" style="background: url('images/background.jpg');">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文