如何.c
在每个.wp_list
停留在右边和顶部,比如right:0 top: 0
?
我设置了绝对位置,但如果那样的话就不是top: 0
http://jsfiddle.net/8dMrx/.wp
.wp_list
.wp{
background-color: blue;
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
width: 450px;
}
.wp_list{
background-color: red;
margin: 10px;
height: 130px;
}
.a, .b, .c{
background-color: gray;
}
.a{
width: 220px;
height: 30px;
}
.b{
width: 220px;
height: 100px;
}
.c{
width: 130px;
height: 130px;
}
html
<div class="wp">
<div class="wp_list">
<div class="a">a</div>
<div class="b">b</div>
<div class="c">c</div>
</div>
<div class="wp_list">
<div class="a">a</div>
<div class="b">b</div>
<div class="c">c</div>
</div>
// generate from php
</div>