0

到目前为止,我有一个简单的网站,但有两个问题。我已经用百分比完成了所有事情,因为该网站可能会在高清电视上上升,我希望它们能够很好地扩展。缩放适用于图像,但 id 也喜欢缩放导航栏背景和文本,使其最终看起来不小。

第二个问题是当网站被压扁时,底部图像会覆盖导航栏并且不会在导航栏元素下方流动。我很喜欢这个功能,因为它可以很好地适用于智能手机。

这是html:

    <!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <link rel="stylesheet" type="text/css" href="headish.css">
    <title>New Site</title>
  </head>
  <body>
    <div id="container">
        <div id="tophead">
            <img src="images/logo.png" alt="logo" />    
            <ul>
                <li><a href="#" title="About Us">About Us</a></li>
                <li><a href="#" title="Biographies">Biographies</a></li>
                <li><a href="#" title="Services">Services</a></li>
                <li><a href="#" title="Careers">Careers</a></li>
                <li><a href="#" title="Contact">Contact</a></li>
            </ul>
        </div>
        <div id="maincont">
          <img src="images/second.png" alt="image">
        </div>
    </div>
    </div>
  </body>
</html>

这是CSS:

    html, body, #container {
    height: 100%;
    width: 100%;
    margin: 0;
    position: relative;

}

#tophead {
    height: 20%;
    width: 80%;
    margin: auto;
    text-align: center;

}

#tophead img {
    height: 100%;
    width: auto%;

}
#tophead ul {
    list-style: none;
    display: inline-block;
    font-size: 0;


}
#tophead li {
    display: inline-block;

    }
#tophead a {
  background: #2dbaf0;
  color: #fff;
  display: block;
  font-size: 16px;
  font-family: "arial";
  font-weight: bold;
  padding: 0 20px;
  line-height: 38px;
  text-transform: uppercase;
  text-decoration: none;

}
#tophead a:hover {
  background: #f8a52b;
  color: #fff;
  -webkit-transition-property: background;
  -webkit-transition-duration: .2s;
  -webkit-transition-timing-function: linear;
}
#tophead li:first-child a {
  border-left: none;
  border-radius: 5px 0 0 5px;
}
#tophead li:last-child a {
  border-right: none;
  border-radius: 0 5px 5px 0;
}
#maincont {
    padding-left: 10%;

    }
#maincont img{
    border-radius: 7%;
    width: 30%;
    }
4

1 回答 1

1

要阻止图像流入其他元素,clear:both请在您的#maincontent img

编辑:可以在这里找到一篇很好的文章,它建议了其他方法。http://quirksmode.org/css/clearing.html

Edit2:这只适用于浮动元素,我刚刚注意到你根本没有使用浮动元素。看我下面的评论

于 2013-02-22T00:40:44.387 回答