本教程操作环境:windows10系统、HTML5版本、Dell G3电脑。
html5不能用align
HTML中表格、文字、图像等元素都有使用到align属性,align属性主要是影响设置元素的水平对齐方式,给表格、文字、及图像等元素设置align属性,其表现形式是不一致的。
html中align的意思是“对齐”,是html标签的一种属性,用于设置元素中内容的对齐方式,语法为
<element align="值">
登录后复制
属性值有left、right、center等,可设置内容向左、向右或居中等多种对齐方式。
HTML5中已不再支持 <div> align 属性,请使用 CSS 替代。
<div> 的 align 属性在 HTML 4.01 中已被废弃。 in HTML 4.01.
align 属性规定 <div> 元素中的内容的水平对齐方式。
CSS 代替语法:
<div style="text-align:center">
登录后复制
示例如下:
<!DOCTYPE html> <html> <body> <p>This is a paragraph. This text has no alignment specified.</p> <div style="text-align:center;border:1px solid red"> This is some text in a div element! </div> <p>This is a paragraph. This text has no alignment specified.</p> </body> </html>
登录后复制
输出结果:
以上就是html5不能用align吗的详细内容,更多请关注Work网其它相关文章!