1

我有一个尺寸为2350*180的图像。

我正在研究电话差距。所以,我需要以通用格式提供代码,以便它适用于任何设备。

现在,我有一张大图的背景图。

style="background:url("img/bg.png") no-repeat fixed center top; width:100%; height:100%; "

此代码仅适用于少数..我的代码有什么错误吗?

另一个问题是,当我滚动时,滚动条可见。所以我加了

style="overflow:hidden;"

<img src=""/> tag.

我是正确的还是应该添加任何其他代码?

编辑:

HTML

    <body style="style="background:url("img/bg.png") no-repeat fixed center top; width:100%; height:100%;" class="body">
    <div id="image"  class="noSelect">
        <table class="table">
            <tr>
                <td class="main">
                    <img src="http://www.rhpstudio.com/images/google_icon.png" alt="map" usemap="#map" style="overflow:hidden;" />
                </td>
            </tr>
        </table>
</body>

我正在使用代码中的这个背景背景:url(“img/bg.png”),这个图像在这里给出是一个样本,但它的尺寸是2350*180

编辑:2-->整个代码

HTML 代码:

<body style="background-image:url(img/bg.png);" class="body">
    <div id="image"  class="noSelect" style="height:100%;">
       <table class="table">
          <tr>
        <td class="main">
           <img src="img/list.png" alt="bloodtestmap" usemap="#bloodtestmap" class="noSelect" style="overflow:hidden;" />
         </td>
          </tr>
       </table>

代码:

    .body, .main_html
    {
        height: 100%;
        margin: 0;
    }
    .body
    {
        overflow: hidden;
        background-size: 100% 100%;
    }
    .table 
    {
        width: 100%;
        height: 100%;
        text-align: center;
    }
    .main 
    { 
        max-width: 100%;
        vertical-align: middle;
    }       
4

1 回答 1

1

您现在可以设置背景图像以各种方式拉伸到容器的边缘。如果您不介意图像失真,您可以这样做:

background-size: 100% 100%;

而不是这个(坏了)

style="style="background:url("img/bg.png") no-repeat fixed center top; width:100%; height:100%;"

在你的样式表中试试这个:

body {
    background-image:url("img/bg.png");
    background-size: 100% 100%;
}
于 2013-06-06T08:35:54.163 回答