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

DOM样式操作

时间:2016-10-25 14:09:14      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:tom   样式表   element   http   border   ref   type   dom   cto   

 

技术分享

 

 

内部样式表

<style type="text/css">
   body{margin:30;}
   p{color:#aaa;line-height: 20px;}
</style>

 

element.sheet.cssRules

element.sheet.cssRules[1]   <--->         p{color:#aaa;line-height: 20px;}   //cssRules中的『第二条rule』

                                                          .style  <--->   color:#aaa;line-height: 20px;   //rule的『css声明(属性名和属性值的键值对)』 

                                                                                .lineHeight //通过『属性名』获得『属性值』  

                                                .selectorText   <---> p //这条rule的选择器

我们可以通过

style,是CSSStyleDeclaration类的一个对象

DOM样式操作

标签:tom   样式表   element   http   border   ref   type   dom   cto   

原文地址:http://www.cnblogs.com/qq-757617012/p/5996211.html

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