本文介绍了跨浏览器的CSS用于左对齐,右对齐和中心对齐在同一行上的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
与类似除了你如何获得第三个文本组显示死点,以及一个死左和一个死权?
Similar to this easy one, except how do you get a third text group to show up dead center, along with one "dead left", and one "dead right"?
推荐答案
<div>
<p style="float: left; width: 33%;">stuff on the left</p>
<p style="float: left; width: 33%; text-align: center">center</p>
<p style="float: right; width: 33%; text-align: right">stuff on the right </p>
</div>
这篇关于跨浏览器的CSS用于左对齐,右对齐和中心对齐在同一行上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!