对于HTML标签style属性的运用办法详解(附具体实例)
第一我们介绍下HTML标签style属性的定义吧:
style 属性是规定元素的行内样式(inline style)
style 属性将覆盖任何全局的样式设定,例如在 <style> 标签或在外部样式表中规定的样式。
HTML style 属性实例
在 HTML 文档中使用 style 属性:
<h1 style="color:blue; text-align:center">This is a header</h1> <p style="color:red">This is a paragraph.</p>
HTML标签style属性的语法:
<element style="value">
HTML标签style属性的属性值:
style_definition : 一个或多个由分号分隔的 CSS 属性和值。
HTML中的style属性的各种样式解析
1.style属性可以设定字体样式(font-family:)、字体大小(font-size:)、文本的色彩(color:)等内容。它可以在
每个不一样的标签中设定,也可以放置到CSS样式表中停止设定。由于我的文章都是跟从着http://www.codecademy.com来
写的,当前还没有介绍到CSS,所以在这里临时先不触及CSS,仅仅是在标签中停止设定,下面是示例代码和示企图:
<!DOCTYPE html> <html> <head> <title>color the text</title> </head> <!-- now i will color the text--> <body> <h3 style="color:blue;font-size=20px">Hello World!</h3> <p style="color:red;font-size=10px">你好!!!!</p> </body> </html>
留意:
a)我用的阅读器是chrome,在其中编纂并显示时总是发明设定的10px字体没有利用,通过查寻chrome设定,发明
是在chrome中设定的最小字体是12px,所以10px字体大小没有用,把chrome阅读器的最小字体改小就好了。
b)style属性中的赋值方式是:属性名称:值,而不是习惯的等号=,假如用等号,则style结果不会被施行。
2.style样式中也可以设定背景色彩,style中包括属性background-color,设定它的色彩值就可以使整个标签范畴内的背景色彩变
为background-color指定的色彩。下面是示例代码和示企图:
<!DOCTYPE html> <html> <head> <title>color the text</title> </head> <!-- now i will color the text--> <body> <h3 style="color:blue;font-size=20px ;background-color:yellow">Hello World!</h3> <p style="color:red;font-size=10px ;background-color:green">你好!!!!</p> </body> </html>
3.文本对齐
有些标签属性中有align属性,可以设定文本对齐方式,在style中也可以设定相似的属性。这个属性值就是text-align。它的
取值包罗left、center和right。下面是示例代码和示企图:
<!DOCTYPE html> <html> <head> <title>color the text</title> </head> <!-- now i will color the text--> <body> <h3 style="color:blue;font-size=20px ;background-color:yellow;text-align:center">Hello World!</h3> <p style="color:red;font-size=10px ;background-color:green;text-align:right">你好!!!!</p> </body> </html>
关于html的style属性的两种详细用途实例:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>练习使用HTML</title> <style> /*标签选中器*/ h4 { color: blue; text-align: right; } </style> </head> <body> <!--规定元素的行内样式--> <p style="color:red;text-align:center">测试html的style属性</p> <h4>h41</h4> <h4>h42</h4> </body> </html>
【小编的相关引荐】
html5 details标签的作用是啥?<details>标签的使用办法介绍(附使用实例)
html table表格是啥?<table>标签中各种属性的使用办法
以上就是关于HTML标签style属性的使用办法详解(附详细实例)的具体内容,更多请关注百分百源码网其它相关文章!