- Mastering CSS
- Rich Finelli
- 255字
- 2021-07-08 09:45:53
Should we use classes or IDs?
Now, you're probably thinking, what's the difference between a class and an ID? Well, the first point to make is an ID has more weight than a class, literally 10 times more weight. Keeping your selectors lightweight is one of the keys to scalable, reusable CSS. What does having more weight really mean? It means it's more specific and an ID will overrule any class. We'll deep dive into specificity rules and weights in Chapter 4, Creating Buttons with Modular, Reusable CSS Classes, and CSS3. For now, just know that IDs will overrule classes when targeting the same element. The second point to make is that an ID is unique, and therefore, it can only be used once per page. Given these two points, primarily the first point, as a coding standard, I rarely use IDs for styling because classes are almost always more than sufficient.
Renaming elements with a simple class is so unbelievably powerful and probably the most useful thing in all of CSS. While naming classes, although sometimes tricky, it is important to make names semantic or meaningful. For example, if you're naming your blog post container, it's okay to name it "blog-post-container" because that perfectly describes what it is. IDs, although they have their time and place, aren't as useful as classes. It's best to just use a class in most circumstances to keep your specificity low. In the next section, you'll learn about how we can target elements by their context using descendant selectors.
- Mastering Ext JS(Second Edition)
- 計算機網絡
- Spring Boot開發與測試實戰
- PyQt從入門到精通
- 軟件項目管理實用教程
- Python算法從菜鳥到達人
- Spring Boot Cookbook
- 零基礎學Python網絡爬蟲案例實戰全流程詳解(入門與提高篇)
- Learning PHP 7
- Raspberry Pi Robotic Projects(Third Edition)
- 創意UI:Photoshop玩轉APP設計
- Kotlin Programming By Example
- Data Science Algorithms in a Week
- Python Deep Learning
- 高效使用Greenplum:入門、進階與數據中臺