首先要新增.css和.html兩種檔案,並且在html的head標籤中引入
<link rel="stylesheet"type="text/css"href="css-selector.css"/>
/*標籤名稱選擇器*/
body{background-color:#cccccc}
/*id選擇器*/
#title-1{text-decoration-line:line-through;}
/*class選擇器*/
.title {
margin-bottom:10px;
font-weight:bold;
font-size:24px
}
.content{
width:400px;
padding:10px;
border:1px dashed blue;
color:#666666
}
.keyword{color:green}
<body>
<div id="title-1"class= "title">文章第一段落的標題</div>
<div class= "content">
今天的<span class="keyword">天氣</span>真是不錯
</div>
<div class= "title">文章第二段落的標題</div>
<div class= "content">
今天的<span class="keyword">心情</span>真是不錯
</div>
</body>
<div id="title-1"class= "title">文章第一段落的標題</div>