- 如何正确对齐文本? Top
-
发布时间:2010-10-29 13:42:42
发布时间:2010-10-29 13:42:42
有时,我们需要对一段文本的左右,上下的边距(指文本至浏览器的距离)加以指定以使文本正确对齐,CSS(层叠样式表)提供这样的功能:
在<head></head>中加入
<style>
<!--.tt { margin-left: 68px; margin-right: 70px; margin-top: 69px; margin-bottom: 71px }
-->
</style>
.tt为类名,以便你在HTML标签中应有。而在{ }中的属性及指分别为边距左,右,上,下的距离。当它们的边距都相等时比如都是60px,可以简写为:.tt { margin: 60px }.
当在文本中引用了该CSS,你会发现文本对的非常整齐。