1. is, where选择器
目前有些浏览器不支持,如 360浏览器,QQ浏览器目前不支持,慎用
h1 > b, h2 > b, h3 > b, h4 > b, h5 > b, h6 > b {
color: hotpink;
}
/* 等价于 */
:is(h1,h2,h3,h4,h5,h6) > b {
color: hotpink;
}
2. aspect-ratio 为元素设置宽高比
.img_container {
width: 100%;
aspect-ratio: 16 / 9;
}