我需要下面的 HTML 代码和 css 之类的东西。但现在浏览器显示垂直滚动。如何删除垂直滚动。代码在 jsFiddile http://jsfiddle.net/jHVc7/
<style type="text/css">
html,body{
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
}
header{
height: 50px;
background: #84ff00;
}
section{
background: #139e7f;
height: 100%;
}
section div{
width: 180px;
float: left;
background: #d0b107;
height: 100%;
}
section aside{
width: auto;
overflow: hidden;
background: #0edb09;
}
</style>
</head>
<body>
<header></header>
<section>
<div>a</div>
<aside>b</aside>
</section>
</body>