:empty (Selectors) – CSS 中文开发手册
2021-01-24 07:12
标签:https chrome 元素 play tle stat class section div :empty (Selectors) - CSS 中文开发手册 该:empty伪类代表没有子节点的所有元素。这里只考虑元素节点和文本(包括空格)。注释或处理指令不影响元素是否被认为是空的。 Specification Status Comment Selectors Level 4The definition of ‘:empty‘ in that specification. Working Draft No change Selectors Level 3The definition of ‘:empty‘ in that specification. Recommendation Initial definition Feature Chrome Edge Firefox (Gecko) Internet Explorer Opera Safari Basic support 1.0 (Yes) 1.0 (1.7 or earlier) 9.0 9.5 3.1 Feature Android Edge Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile Basic support 2.1 (Yes) 1.0 (1) 9.5 10.0 3.1 :empty (Selectors) – CSS 中文开发手册 标签:https chrome 元素 play tle stat class section div 原文地址:https://www.cnblogs.com/breakyizhan/p/13257620.html/* Selects any
语法
:empty
实例
body {
display: flex;
justify-content: space-around;
}
.box {
background: red;
height: 100px;
width: 100px;
}
.box:empty {
background: lime;
}
规范
浏览器兼容性
上一篇:css:三角&用户界面(三角形效果、鼠标样式、输入框与文本域的优化)
下一篇:css:vertical-align&文字溢出(vertical-align属性、溢出的文字显示为省略号)
文章标题::empty (Selectors) – CSS 中文开发手册
文章链接:http://soscw.com/index.php/essay/46227.html