Recent posts
Tag: #til · 3 posts
Posted Dec 1
#TIL Chrome 在 Performance 的页面有一个垃圾桶图标点击可以触发垃圾回收 或者在参数添加 --js-flags=--expose-gc 启动后可以使用 window.gc() 手动触发 GC 另外可以配合 FinalizationRegistry API 使用
Hashtags
Posted Jul 26
#TIL chrome devtools 可以被直接嵌入前端页面 用法示例 https://github.com/NWYLZW/awaitabler/blob/849a661168418bac87927ef6b21a50ddb1667c52/playground/public/front_end/chii_app.html
Hashtags
Posted Jul 21
#TIL#react react 很早就不支持 !important 样式 > since 15.x it no longer works even on initial render (since moving away from innerHTML). All rules with "!important" are now being thrown out. > !important is horribly abused in css, and if people write their css properly their is never a need for !important. That said I don't think it should be included, because then people can use "bad practices" in their apps and styles. Personally inline styling with react is bad enough. https://github.com/facebook/react/issues/1881