上一页 1 ··· 66 67 68 69 70 71 72 73 74 ··· 497 下一页
摘要: z-index property arranges how an element is stacked onto other positioned elements. At times you may set a z-index property on a child element to be l 阅读全文
posted @ 2023-07-20 00:45 Zhentiw 阅读(22) 评论(0) 推荐(0)
摘要: You only require a few lines of CSS to enable a dark/light mode on your website. You just need to let browsers know that your website can display corr 阅读全文
posted @ 2023-07-20 00:44 Zhentiw 阅读(61) 评论(0) 推荐(0)
摘要: This trick is inclined towards improving copy and paste experience for website users. Using user-select: all, you can enable easy text selection with 阅读全文
posted @ 2023-07-20 00:37 Zhentiw 阅读(30) 评论(0) 推荐(0)
摘要: You don't have to get stuck on how the browser renders a numbered list. You can implement your own design utilizing counters(). Here's how: ul { margi 阅读全文
posted @ 2023-07-20 00:33 Zhentiw 阅读(33) 评论(0) 推荐(0)
摘要: Try throttling to a slow internet in the browser Dev tools and visit a website made up of HD images like unsplash. That's how to experience the pain o 阅读全文
posted @ 2023-07-20 00:32 Zhentiw 阅读(21) 评论(0) 推荐(0)
摘要: When working with positioned elements, you often write code like this: .some-element { position: absolute; top: 0; left: 0; right: 0; bottom: 0; } Thi 阅读全文
posted @ 2023-07-20 00:30 Zhentiw 阅读(28) 评论(0) 推荐(0)
摘要: p.intro { width: 300px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; /* Truncate when no. of lines exceed 3 */ overflow: 阅读全文
posted @ 2023-07-20 00:28 Zhentiw 阅读(29) 评论(0) 推荐(0)
摘要: Using Linked list to implement a Queue. In javascript, if you want to push a item in front of an Array, it need to shift the rest of items, not good f 阅读全文
posted @ 2023-07-19 14:33 Zhentiw 阅读(35) 评论(0) 推荐(0)
摘要: const $ = () => document.querySelector.call(this, arguments); const $$ = () => document.querySelectorAll.call(this, arguments); HTMLElement.prototype. 阅读全文
posted @ 2023-07-18 20:41 Zhentiw 阅读(39) 评论(0) 推荐(0)
摘要: Implement the util type OptionalUndefined<T, Props> that turns all the properties of T that can be undefined, into optional properties. In addition, a 阅读全文
posted @ 2023-07-18 19:58 Zhentiw 阅读(18) 评论(0) 推荐(0)
上一页 1 ··· 66 67 68 69 70 71 72 73 74 ··· 497 下一页