1

我应该首先说我对 HTML/CSS 之类的东西比较陌生。我有一张 2880x540 的图片,我希望将其设置为网站的登录页面。这意味着我需要使图像居中,以便多余的宽度从浏览器窗口中溢出,而没有滚动条(对于更高分辨率的显示器来说,多余的分辨率就在那里)。我计划使用图像的两个区域作为其他两个具有相同比例的图像的翻转。

截至目前,我的代码非常基本:

    <!DOCTYPE html>
  <head>
  </head>
  <body>
  <img src="sitewide.png" width="2880" height="540"  alt=""/>
  </body>
</html>

非常感谢任何反馈。

4

1 回答 1

0

您可以将图像设置为 div 的居中背景:

<!DOCTYPE html>
  <head>
    <style>
      body{
        overflow-x: hidden;
      }
      #bigImage{
        background:url('sitewide.png') no-repeat top center;
        width: 2880px;
        height: 540px;
      }
    </style>
  </head>
  <body>
    <div id="bigImage"></div>
  </body>
</html>
于 2013-11-13T22:40:17.263 回答