本篇文章為大家解釋的是關於HTML標籤的style屬性的定義和作用,還有關於HTML中的style屬性的使用方法實例,還有關於HTML標籤中的style屬性的各種樣式解析。讓我們一起來看這篇文章吧 首先我們介紹下HTML標籤style屬性的定義: style 屬性是規定元素的行內樣式(inline style ) style 屬性將覆寫任何全域的樣式設定,例如在 標籤或在外部樣式表中規定的樣式。 </p> <p><strong>HTML style 屬性實例</strong></p> <p>在HTML 文件中使用style 屬性:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><h1 style="color:blue; text-align:center">This is a header</h1> <p style="color:red">This is a paragraph.</p></pre><div class="contentsignin">登入後複製</div></div><p><strong>HTML標籤style屬性的語法:</strong> </p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><element style="value"></pre><div class="contentsignin">登入後複製</div></div><p><strong>HTML標籤style屬性的屬性值:</strong></p><p>style_definition :一個或多個由分號分隔的CSS 屬性和值。 </p><p><strong>HTML中的style屬性的各種樣式解析</strong></p><p><strong>#1.style屬性可以設定字體樣式</strong>(font-family:)、字體大小(font-size:)、文字的顏色(color:)等。它可以在</p><p>每個不同的標籤中設置,也可以放置到CSS樣式表中進行設定。因為我的文章都是跟著http://www.codecademy.com來</p><p>寫的,目前還沒有介紹到CSS,所以在這裡暫時先不涉及CSS,只是在標籤中進行設置,以下是範例程式碼和示意圖:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><!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></pre><div class="contentsignin">登入後複製</div></div><p>注意:</p><p>a)我用的瀏覽器是chrome,在其中編輯並顯示時總是發現設定的10px字體沒有應用,透過找出chrome設置,發現</p><p>是在chrome中設定的最小字體是12px,所以10px字體大小沒有用,把chrome瀏覽器的最小字體改小就好了。 </p><p>b)style屬性中的賦值方式是:屬性名稱:值,而不是習慣的等號=,如果用等號,則style效果不會被執行。 </p><p><strong>2.style樣式中也可以設定背景顏色</strong>,style中包含屬性background-color,設定它的顏色值可以讓整個標籤範圍內的背景顏色變</p> <p>為background-color指定的顏色。以下是範例程式碼和示意圖:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><!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></pre><div class="contentsignin">登入後複製</div></div><p><strong>3.文字對齊</strong></p><p>#有些標籤屬性中有align屬性,可以設定文字對齊方式,在style中也可以設定類似的屬性。這個屬性值就是text-align。它的</p><p>取值包括left、center和right。以下是範例程式碼與示意圖:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><!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></pre><div class="contentsignin">登入後複製</div></div><p><strong>關於html的style屬性的兩個具體用法實例:</strong></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>练习使用HTML</title> <style> /*标签选择器*/ h4 { color: blue; text-align: right; } 测试html的style属性 h41 h42