其他分享
首页 > 其他分享> > CSS OM

CSS OM

作者:互联网

虽然放在 DOM 分类里面,但是 CSS OM 并不属于 DOM,而是并行的。仅为方便查找。

document.styleSheets

<style title="hello">
  a {
    color: red;
  }
</style>
<link rel="stylesheet" title="x" href="data:text/css,p%7Bcolor: blue%7D">

Rules

Rule

getComputedStyle

标签:OM,DOM,color,getComputedStyle,element,styleSheets,document,CSS
来源: https://www.cnblogs.com/ssaylo/p/13278634.html