2020年8月19日

CSS3选择器

摘要: 1、属性选择器 [attribute] [target] 选择所有带有target属性元素 [attribute=value] [target=-blank] 选择所有使用target="-blank"的元素 [attribute^=value] a[src^="https"] 选择每一个src属性 阅读全文

posted @ 2020-08-19 22:08 cx125 阅读(156) 评论(0) 推荐(1) 编辑

CSS3

摘要: 1.css3属性选择器 /* 所有包含class属性的 */ [class] { width: 100px; height: 100px; background-color: red; } /* 所有class属性为box的 */ [class='box'] { height: 200px; } / 阅读全文

posted @ 2020-08-19 21:40 cx125 阅读(140) 评论(0) 推荐(1) 编辑

导航