成功之道,在于你为获得成功所做出的积极努力,而不在于预先就衡量这种成功的价值——哈里特

分享一个小技巧

display:block

可以将style标签可见

例如:

1
2
3
4
5
6
7
8
9
10
11
12
13
<body>
<style contenteditable style="display: block;white-space: pre">
* {
transition: all 0.2s
}

html {
background: #ff00ff;
font-size: 16px
}

</style>
</body>

image-20221031140550718

因为我们这里给了contenteditable

所以可以直接在页面上编辑

image-20221031140703924

试试吧