梦之都
CSS教程
,
text-align
示例
left左对齐
right右对齐
center居中
justify
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>CSS text-align 属性示例</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>梦之都
CSS教程
,<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>