对齐这两列的最佳方法是什么 - .responseNum & .responseText
:
num 列也有背景 - > 我可以用 CSS3 做这个形状,因为我无法获得正确的图像比例吗?
HTML:
<div class="textMessageResponse">
<div class="responseNum">
<span class="number">1</span>
</div>
<div class="responseText">
<p>Not bad morbi no bad luke crying twitter le me sit superhero cellphone. Strangers silent hill party problem? Loki cereal guy gentlemen monocle high school lose trolololo men true story. On freddie mercury asian le girlfriend happy facepalm blizzard bart. Charlie Sheen bacon search pokeman unsave i see what you did there vegan cookie monster humor final week.</p>
</div>
</div>
CSS:
.textMessageResponse{
height:60px;
background-color:#fff;
margin:10px;
}
.textMessageResponse .responseNum .responseText{
float:left;
display:inline-block;
}
.textMessageResponse .responseNum{
width:35px;
height:35px;
}
.textMessageResponse .responseNum .number{
background:url('../images/numBG.png') no-repeat;
width:25px;
height:25px;
color:#fff;
text-align:center;
font-weight:bold;
}