码迷,mamicode.com
首页 > 其他好文 > 详细

基础选择器

时间:2020-01-05 17:15:50      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:col   one   style   body   tle   div   span   选择   china   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>

<style>
/*通用选择器 */
*{
font-size:45px;
}
/* 标签选择器 */
p{
background-color: #2eb1fc;
}
/* id选择器 */
#p1{
font-style: italic;
}
/*class 选择器*/
.c1{
background-color: red;
}

</style>
</head>
<body>
<p>helloo star</p>
<div>hello china
<span>hello span</span>
<p id="p1">p2..............</p>
<p class="c1">c1...............</p>
<p class="c1">c1....</p>
</div>
<div class="c1">hello throne</div>
</body>
</html>

基础选择器

标签:col   one   style   body   tle   div   span   选择   china   

原文地址:https://www.cnblogs.com/startl/p/12152912.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!