HTML 標籤</strong></p> <p><strong><img src="https://img.php.cn/upload/article/000/000/029/5d9c352313405883.jpg" alt="HTML的<style>標籤" ></strong></p> <p>#所有主流瀏覽器都支援 <style> 標籤。 </p> <p><strong> 定義與用法 </strong> (建議學習:<a href="https://www.php.cn/div-tutorial.html" target="_self">HTML入門教學</a>)</p> <p><strong><style> 標籤用於為HTML 文件定義樣式資訊. </strong></p> <p><strong>在 style 中,您可以規定在瀏覽器中如何呈現 HTML 文件。 </strong></p> <p>type 屬性是必要的,定義 style 元素的內容。唯一可能的值是 "text/css"。 </p> <p>style 元素位於 head 部分。 </p> <p><strong>提示</strong></p> <p><strong>提示:</strong>如需連結外部樣式表,請使用 <link> 標籤。 </p> <p><strong>實例:</strong></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><html> <head> <style type="text/css"> h1 {color: red} p {color: blue} header 1 A paragraph.