在 CSS3 中,有什么区别:
body[data-page~='hello'] {
}
和
body[data-page='hello'] {
}
我已经看到 ~ 被称为通用兄弟组合器,http://css-tricks.com/child-and-sibling-selectors/但我在上面的上下文中不理解它。
谢谢。
在 CSS3 中,有什么区别:
body[data-page~='hello'] {
}
和
body[data-page='hello'] {
}
我已经看到 ~ 被称为通用兄弟组合器,http://css-tricks.com/child-and-sibling-selectors/但我在上面的上下文中不理解它。
谢谢。