我的代码示例可以在 JSFiddle http://jsfiddle.net/WdZgV/上找到
CSS
<style type="text/css">
body {
margin: 0;
padding: 0;
}
.header_div {
display: inline-block;
width: 100%;
text-align: center;
}
.header {
display: inline-block;
height: 100px;
width: 100%;
max-width: 1000px;
background: #ddd;
}
.logo {
float: left;
width: 200px;
height: 100px;
background: #bbb;
}
.menu {
float: left;
width: 800px;
height: 100px;
background: #999;
}
</style>
HTML
<div class="header_div">
<div class="header">
<div class="logo"></div>
<div class="menu"></div>
</div>
</div>
我想要的是,当您将窗口宽度调整为小于 1000 像素时,.menu
div 会调整为父 div 的大小。
举个例子:
如果您的窗口宽度为 900 像素,则.logo
div为 200 像素,而 div 为.menu
700 像素。
无论如何我可以用 CSS 做到这一点,还是我需要使用 Javascript?