我试图复制边缘使用的评级框的基本效果(你可以在这里看到它:http ://www.theverge.com/2012/5/9/3002183/airplay-speaker-review-iphone底部),但我的文本对齐一直存在问题。现在我有这个:
<div class="product-score-box">
<div class="score">
<span class="totalscore">
<?php echo aff_the_rating();?>
</span>
<span class="ourscore">Our Score</span>
</div>
<a href="#" class="product-score-cta">Leave Review</a>
</div>
CSS:
.product-score-cta { right:0; left: 0; bottom:5px; color:white;}
.ourscore {bottom:8px;}
.totalscore {top:10px; font-size:70px; line-height:70px;}
.ourscore,.totalscore,.product-score-cta {position:absolute; }
.score {
height:115px;
color:white;
background:#f48b1b;
position:relative;
}
.product-score-box {
display: block;
position: absolute;
top:20px;
right:10px;
color: white;
font-family: 'DINCond-MediumRegular';
background: black;
text-align: center;
z-index: 20;
overflow: hidden;
font-size: 16px;
line-height: 100%;
width:130px;
height:140px;
}
在 Firefox 上,.score 中的文本没有与中心对齐,而在 Chrome 中,它的对齐方式很奇怪(好像它是合理的?或其他东西)。我在绝对定位方面绝对糟糕!如果有人可以帮助我获得类似的效果,我将永远感激不尽。
编辑:http: //jsfiddle.net/wQrZr/