返回到:CSS 文本格式 | CSS教程
属性定义及使用说明
text-align属性指定元素文本的水平对齐方式。
默认值: | 如果 direction 属性是 ltr,则默认值为 left;如果 direction 属性是 rtl,则默认值为 right。 |
---|---|
继承: | yes |
版本: | CSS1 |
JavaScript 语法: | object.style.textAlign=”right” |
属性值
值 | 描述 |
---|---|
left | 把文本排列到左边。默认值:由浏览器决定。 |
right | 把文本排列到右边。 |
center | 把文本排列到中间。 |
justify | 实现两端对齐文本效果。 |
inherit | 规定应该从父元素继承 text-align 属性的值。 |
浏览器支持
表格中的数字表示支持该属性的第一个浏览器版本号。
紧跟在 -webkit-, -ms- 或 -moz- 前的数字为支持该前缀属性的第一个浏览器版本号。
属性 | 谷歌 | IE | 火狐 | 苹果 | opera |
---|---|---|---|---|---|
text-align | 1.0 | 3.0 | 1.0 | 1.0 | 3.5 |
实例
h1, h2, 和 h3元素设置文本的对齐方式:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Web176教程(web176.com)</title> <style> h1 {text-align:center} h2 {text-align:left} h3 {text-align:right} </style> </head> <body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> </body> </html>
作者:terry,如若转载,请注明出处:https://www.web176.com/cssprop/5723.html