在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
ID and class naming .fw-800 { font-weight: 800; } .red { color: red; } 推荐 .heavy { font-weight: 800; } .important { color: red; } 合理的避免使用ID 不推荐 #content .title { font-size: 2em; } 推荐 .content .title { font-size: 2em; } 另一个反对使用ID的观点是含有ID选择器权重很高。 // 这个选择器权重高于下面的选择器 #content .title { color: red; } // than this selector! html body div.content.news-content .title.content-title.important { color: blue; } CSS选择器中避免标签名 div.content > header.content-header > h2.title { font-size: 2em; } 推荐 .content > .content-header > .title { font-size: 2em; } 尽可能的精确 <article class="content news-content"> <span class="title">News event</span> <div class="content-body"> <div class="title content-title"> Check this out </div> <p>This is a news article content</p> <div class="teaser"> <div class="title">Buy this</div> <div class="teaser-content">Yey!</div> </div> </div> </article> 下面的CSS将应用于有title类的全部三个元素。 .content .title { font-size: 2rem; } 推荐 .content > .title { font-size: 2rem; } .content > .content-body > .title { font-size: 1.5rem; } .content > .content-body > .teaser > .title { font-size: 1.2rem; } 缩写属性 css 代码: border-top-style: none; font-family: palatino, georgia, serif; font-size: 100%; line-height: 1.6; padding-bottom: 2em; padding-left: 1em; padding-right: 1em; padding-top: 0; 推荐 border-top: 0; font: 100%/1.6 palatino, georgia, serif; padding: 0 1em 2em; 0 和 单位 css 代码: padding-bottom: 0px; margin: 0em; 推荐 padding-bottom: 0; margin: 0; 十六进制表示法 在可能的情况下,使用3个字符的十六进制表示法。 color: #FF33AA; 推荐 color: #f3a; ID 和 Class(类) 名的分隔符 .demoimage {} .error_status {} 推荐 #video-id {} .ads-sample {} Hacks 避免用户代理检测以及CSS“hacks” – 首先尝试不同的方法。通过用户代理检测或特殊的CSS滤镜,变通的方法和 hacks 很容易解决样式差异。为了达到并保持一个有效的和可管理的代码库,这两种方法都应该被认为是最后的手段。换句话说,从长远来看,用户代理检测和hacks 声明顺序 这是一个选择器内书写CSS属性顺序的大致轮廓。这是为了保证更好的可读性和可扫描重要。 作为最佳实践,我们应该遵循以下顺序(应该按照下表的顺序): 结构性属性: .box { font-family: 'Arial', sans-serif; border: 3px solid #ddd; left: 30%; position: absolute; text-transform: uppercase; background-color: #eee; right: 30%; isplay: block; font-size: 1.5rem; overflow: hidden; padding: 1em; margin: 1em; } 推荐 .box { display: block; position: absolute; left: 30%; right: 30%; overflow: hidden; margin: 1em; padding: 1em; background-color: #eee; border: 3px solid #ddd; font-family: 'Arial', sans-serif; font-size: 1.5rem; text-transform: uppercase; } 声明结束 为了保证一致性和可扩展性,每个声明应该用分号结束,每个声明换行。 不推荐 css 代码: .test { display: block; height: 100px } 推荐 css 代码: .test { display: block; height: 100px; } 属性名结束 属性名的冒号后使用一个空格。出于一致性的原因, 不推荐 css 代码: h3 { font-weight:bold; } 推荐 css 代码: h3 { font-weight: bold; } 选择器和声明分离 每个选择器和属性声明总是使用新的一行。 不推荐 css 代码: a:focus, a:active { position: relative; top: 1px; } 推荐 css 代码: h1, h2, h3 { font-weight: normal; line-height: 1.2; } 规则分隔 规则之间始终有一个空行(双换行符)分隔。 推荐 css 代码: html { background: #fff; } body { margin: auto; width: 50%; } CSS引号 属性选择器或属性值用双引号(””),而不是单引号(”)括起来。 不推荐 css 代码: @import url('//cdn.com/foundation.css'); html { font-family: 'open sans', arial, sans-serif; } body:after { content: 'pause'; } 推荐 css 代码: @import url(//cdn.com/foundation.css); html { font-family: "open sans", arial, sans-serif; } body:after { content: "pause"; } 选择器嵌套 (SCSS) 在Sass中你可以嵌套选择器,这可以使代码变得更清洁和可读。嵌套所有的选择器,但尽量避免嵌套没有任何内容的选择器。 不推荐 css 代码: // Not a good example by not making use of nesting at all .content { display: block; } .content > .news-article > .title { font-size: 1.2em; } 不推荐 css 代码: // Using nesting is better but not in all cases // Avoid nesting when there is no attributes and use selector chains instead .content { display: block; > .news-article { > .title { font-size: 1.2em; } } } 推荐 css 代码: // This example takes the best approach while nesting but use selector chains where possible .content { display: block; > .news-article > .title { font-size: 1.2em; } } 嵌套中引入 空行 (SCSS) 嵌套选择器和CSS属性之间空一行。 不推荐 css 代码: .content { display: block; > .news-article { background-color: #eee; > .title { font-size: 1.2em; } > .article-footnote { font-size: 0.8em; } } } 推荐 css 代码: .content { display: block; > .news-article { background-color: #eee; > .title { font-size: 1.2em; } > .article-footnote { font-size: 0.8em; } } } 上下文媒体查询(SCSS) 在Sass中,当你嵌套你的选择器时也可以使用上下文媒体查询。 这技术非常方便, 第一种方法这可以让你先写你的手机样式,然后在任何你需要的地方 不推荐 css 代码: // This mobile first example looks like plain CSS where the whole structure of SCSS is repeated // on the bottom in a media query. This is error prone and makes maintenance harder as it's not so easy to relate // the content in the media query to the content in the upper part (mobile style) .content-page { font-size: 1.2rem; > .main { background-color: whitesmoke; > .latest-news { padding: 1rem; > .news-article { padding: 1rem; > .title { font-size: 2rem; } } } > .content { margin-top: 2rem; padding: 1rem; } } > .page-footer { margin-top: 2rem; font-size: 1rem; } } @media screen and (min-width: 641px) { .content-page { font-size: 1rem; > .main > .latest-news > .news-article > .title { font-size: 3rem; } > .page-footer { font-size: 0.8rem; } } }
css 代码: // This is the same example as above but here we use contextual media queries in order to put the different styles // for different media into the right context. .content-page { font-size: 1.2rem; @media screen and (min-width: 641px) { font-size: 1rem; } > .main { background-color: whitesmoke; > .latest-news { padding: 1rem; > .news-article { padding: 1rem; > .title { font-size: 2rem; @media screen and (min-width: 641px) { font-size: 3rem; } } } } > .content { margin-top: 2rem; padding: 1rem; } } > .page-footer { margin-top: 2rem; font-size: 1rem; @media screen and (min-width: 641px) { font-size: 0.8rem; } } } 嵌套顺序和父级选择器(SCSS) 当使用Sass的嵌套功能的时候, 当前选择器的样式属性 Recommended css 代码: .product-teaser { // 1. Style attributes display: inline-block; padding: 1rem; background-color: whitesmoke; color: grey; // 2. Pseudo selectors with parent selector &:hover { color: black; } // 3. Pseudo elements with parent selector &:before { content: ""; display: block; border-top: 1px solid grey; } &:after { content: ""; display: block; border-top: 1px solid grey; } // 4. State classes with parent selector &.active { background-color: pink; color: red; // 4.2. Pseuso selector in state class selector &:hover { color: darkred; } } // 5. Contextual media queries @media screen and (max-width: 640px) { display: block; font-size: 2em; } // 6. Sub selectors > .content > .title { font-size: 1.2em; // 6.5. Contextual media queries in sub selector @media screen and (max-width: 640px) { letter-spacing: 0.2em; text-transform: uppercase; } } } |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论