摘要: button:focus-visible, input:focus-visible, a:focus-visible { border-color: #1e88e5; box-shadow: 0 0 3px 2px rgba(30, 135,229,0.5); } 阅读全文
posted @ 2024-06-24 18:23 Zhentiw 阅读(4) 评论(0) 推荐(0) 编辑
摘要: .balanced-text h2 { color: yellow; text-wrap: balance; } .unbalanced-text h2 { color: rgb(252, 1, 218); } 阅读全文
posted @ 2024-06-24 18:21 Zhentiw 阅读(3) 评论(0) 推荐(0) 编辑
摘要: ul li { border: 2px solid gray; border-radius: 8px; padding: 1rem; margin: 1rem; } // old way ul li input:checked { accent-color: #f806e4; } // new wa 阅读全文
posted @ 2024-06-24 18:19 Zhentiw 阅读(3) 评论(0) 推荐(0) 编辑
摘要: export class PageClickCounterComponent { reset$ = new Subject<void>(); clicks$ = merge( fromEvent<PointerEvent>(document, 'click').pipe( map(accumulat 阅读全文
posted @ 2024-06-24 18:04 Zhentiw 阅读(2) 评论(0) 推荐(0) 编辑