最近看到的有趣的前端的小东西,作为学习笔记
参考来源:w3schools,与 mozila 的 MDN
用变量一样的写法去写 CSS
:root {
--blue: #6495ed;
--white: #faf0e6;
}
body { background-color: var(--blue); }
h2 { border-bottom: 2px solid var(--blue); }
CSS 层面阻止原生事件
pointer-events: auto;
pointer-events: none;