center display

来源:互联网 发布:java的读音 编辑:程序博客网 时间:2024/04/28 05:09
For non-html5:
<center>This text will be center-aligned.</center>

For html5, <center>tag is no longer available. Use css instead.
<!DOCTYPE html><html><head>    <style>              h1 {text-align:center;}              p {text-align:center;}</style></head><body><h1>This is a heading</h1><p>This is a paragraph.</p></body></html>


http://www.w3schools.com/tags/tag_center.asp
http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_center_css


0 0
原创粉丝点击