CSS @layer规则嵌套使用实例页面
回到相关文章 »效果:
代码:
CSS代码:
@layer outer {
button {
width: 100px;
height: 30px;
}
@layer inner {
button {
height: 40px;
width: 160px;
}
}
}
HTML代码:
<button>我是按钮</button>