<head>
標籤中使用<style>
標籤來定義CSS 樣式,這樣的定義稱為內部樣式。
<head> <style> p { color: red; } </style> </head>
<p>
元素的文字顏色為紅色。所有的 CSS 樣式都應該寫在 <style>
標籤中。
.css
。可以使用 <link>
標籤將其引入 HTML 檔案中。
<head> <link rel="stylesheet" type="text/css" href="style.css"> </head>
style.css
引入 HTML 文件中。 href
屬性指定了樣式表的位置。
<p style="color: red;">Hello World!</p>
style
屬性為 <p>
元素定義了顏色樣式。
p
、div
、a
。 .carousel
。 #header
。 [type="text"]
選擇所有 type 值為 text 的元素。 :hover
、:active
。 color: red;
。 font-family: Arial, sans-serif;
。 font-size: 16px;
。 background-color: #f0f0f0;
。 border: 1px solid black;
。 margin: 10px;
。 padding: 10px;
。 width: 100px;
。 height: 100px;
。 <head> <style> #header { background-color: #333333; color: #ffffff; width: 100%; text-align: center; } </style> </head> <body> <div id="header"> <h1>Hello World!</h1> </div> </body>
header
的元素設定了背景顏色、文字顏色、寬度和文字對齊。我們使用了標籤選擇器來選定標題元素 <h1>
。
以上是一文介紹 CSS 的定義方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!