100%寬度div
父母內部的元素div
在list
內似乎不起作用。div元素內的全寬?
.parent {
position : relative;
width : 200px;
height : 200px;
background-color : #888888;
}
.child {
width : 100%;
height : 40px;
background-color : #555555;
margin : 1px 0 0 0;
}
li {
list-style-type : none;
}
<div class="parent">
<ul>
<li><div class="child"></div></li>
<li><div class="child"></div></li>
</ul>
</div>