width属性
块级元素不填写width属性,元素宽度默认等于父级容器的剩余宽度
html
<div class="parent">
<div class="child"></div>
</div>
css
.parent{
height:100px;
width:200px;
background:blue;
}
.child{
height:100%;
background:green;
border-right:100px solid #ccc;
}
以上