我希望“值”右对齐。这是我的 HTML:
<p class="blueBold">Existing Building</p>
<p class="values">19,322 sf</p>
</br>
<p class="blueBold">Acreage</p>
<p class="values">3</p>
...和我的 CSS:
.blueBold {
color: navy;
font-weight: bold;
font-family:'Century Gothic', Tahoma, Verdana, sans-serif;
display: inline-block;
}
.values {
color: white;
text-align:right;
display: inline-block;
}
我需要做什么才能让价值观拥抱正确的边缘?
jsfiddle 在这里:http: //jsfiddle.net/clayshannon/wvuQz/1/