分享一个小技巧
display:block
可以将style
标签可见
例如:
<body>
<style contenteditable style="display: block;white-space: pre">
* {
transition: all 0.2s
}
html {
background: #ff00ff;
font-size: 16px
}
</style>
</body>
因为我们这里给了contenteditable
所以可以直接在页面上编辑
试试吧
* {
transition: all 0.2s
}
html {
background: #ff00ff;
font-size: 16px
}