CSS Selectors

时间:2019-01-09 10:17:52   收藏:0   阅读:131

CSS selectors are used to "find" (or select) HTML elements based on their element name, id, class, attribute, and more.

 

p, h1 {

color: red;

}

 

id选择器

 

#id {

}

 

class选择器

.class {

}

 

原文:https://www.cnblogs.com/feicheninfo/p/10242544.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!