根据官方文档,
绝对位置:
定位一个元素到他的第一个anchestor 相对定位。所以,我想实现五颗星,里面有一个数字(在他的中心)。每个星星和数字都放置在一个相对定位的容器中,但我注意到数字总是绝对相对于第一个容器而不是他最近的父容器定位。事实上,数字是相互重叠的。
HTML
<div id="vota">
<div class="contStella" id="stellauno"><img class="stellaVota" src="http://cdn5.iconfinder.com/data/icons/super-mono-reflection/yellow/star_yellow.png"/> <div class="numeroVota">1</div> </div>
<div class="contStella" id="stelladue"><img class="stellaVota" src="http://cdn5.iconfinder.com/data/icons/super-mono-reflection/yellow/star_yellow.png"/> <div class="numeroVota">2</div> </div>
<div class="contStella" id="stellatre"><img class="stellaVota" src="http://cdn5.iconfinder.com/data/icons/super-mono-reflection/yellow/star_yellow.png"/> <div class="numeroVota">3</div> </div>
</div>
CSS
.contStella
{
position:relative;
}
.numeroVota
{
position:absolute;
font-size:40px;
margin-left:15px;
color:blue;
}
.stellaVota
{
float:left;
height:50px;
}