css 样式 (一)定义选择器

<html>
<head>
<style>
i{
	color:pink;
}
<!--h1 i{
	color:green;
}-->
  
h1#sina i{
	color:green;
}  

h1#sony i{
	color:orange;
}
  
.box{
	color:red;	
}
.box2{
	font-weight:bold;
}
</style>
</head>
<body>
<div class="box box2">plogmass</div>
<h1 id="sina"><i>sina is green</i></h1>
<h1 id="sony"><i>sony is orange</i></h1>
<p id="sina"><i>what if h1 is p</i></p>
</body>
</html>

css 样式 (一)定义选择器_第1张图片

-----------------------------------------------------------------------------------  Ajk-cute  -----------------------------------------------


你可能感兴趣的:(css 样式 (一)定义选择器)