所以我在jsfiddle中實現了我期望實現的目標。我不知道是否有實現這一相同的效果更簡單的方法:將兩行文本居中放在一行旁邊,HTML/CSS
<div class="date">
<span class="day">05</span>
<div class="dateHolder">
<span class="month">DEC</span>
<span class="year">2013</span>
</div>
.date {
position: absolute;
font-family: Arial;
font-weight: bold;
background: rgba(0, 0, 0, 0.8);
color: #fff;
width: 110px;
height: 60px;
padding: 10px;
}
.dateHolder {
margin-top: 10px;
}
.day {
font-size: 50px;
line-height: 60px;
float: left;
}
.month, .year {
float: right;
font-size: 20px;
line-height: 20px;
display: block;
}
感謝您的建議,這對我來說似乎是最簡單的解決方案。乾杯。 – MyKungFuIsGood