我想右对齐标签内的数字
这又在标签内。
<div class="first">
<a class="background-type1" >
<p>Some text</p>
<p class="pull-right">{{=val1}}</p>
</a><a class="background-type2">
<p>SOme other text</p>
<p class="pull-right">{{=val2}}</p>
</a>
</div>
CSS:
.pull-right {
float: right;
}
需要帮助作为我应该添加到 css 的内容,以便 val1 和 val 2 与右侧对齐
提前致谢!