freeCodeCamp/guide/chinese/html/attributes/p-align-attribute/index.md

887 B

title localeTitle
P Align Attribute P对齐属性

P对齐属性

重要

HTML5不支持此属性。建议使用text-align CSS属性

要在<p>标记内对齐文本,此属性将有所帮助。

句法


<p align="position">Lorem Ipsum...</p> 

属性

  • left - 文本对齐
  • right - 文本对齐
  • center - 文本与中心对齐
  • 对齐 - 所有文本行的宽度相等


<html> 
 <body> 
 <p align="center">Paragraph align attribute example</p> 
 </body> 
 </html> 

更多信息: