我喜欢做一些没有浮动的定位。有没有办法获得位置:相对;相对于父母,忽略所有其他孩子。不能使用absolute,因为父级不是。
.myDiv
{
float: left;
margin-left: 10px;
margin-top: 10px;
padding: 0px;
width: 100px;
height: 100px;
background-color: grey;
}
.myDiv1
{
background-color: green;
width: 10px;
height: 10px;
position: relativ;
top: 20px;
left: 10px;
display: inline-block;
}
.myDiv2
{
background-color: red;
width: 10px;
height: 10px;
position: relativ;
top: -20px;
left: 30px;
display: inline-block;
}
.myDiv3
{
background-color: black;
width: 10px;
height: 10px;
position: relativ;
top: -50px;
left: 50px;
display: inline-block;
}
不像例外: http: //jsfiddle.net/VLk6m/16/(所有孩子都在同一个顶部位置)