梦之都
CSS教程
,
text-align
示例
left左对齐
right右对齐
center居中
justify
<head>
<title>CSS text-align 属性示例 -- CSS教程</title> <style type="text/css" media="all"> p#left { text-align: left; } p#right { text-align: right; } p#center { text-align: center; } p#justify { text-align: justify; } p { border:1px solid green; width:500px; } </style> </head> <body> <p>梦之都 <a href="http://www.dreamdu.com/css/">CSS教程</a>,<strong><a href="http://www.dreamdu.com/css/property_text_align/">text-align</a></strong>示例</p> <p id="left">left左对齐</p> <p id="right">right右对齐</p> <p id="center">center居中</p> <p id="justify">justify</p> </body> </html>