CSS编写规范的相关建议
建站知识 2021-07-03 08:15www.168986.cn长沙网站建设
避免过度约束
作为一般规则,不添加不必要的约束。
CSS Code复制内容到剪贴板
- // 糟糕
- ul#someid {..}
- .menu#otherid{..}
- // 好的
- #someid {..}
- #otherid {..}
后代选择符最烂
不仅性能低下而且代码很脆弱,html代码和css代码严重耦合,html代码结构发生变化时,CSS也得修改,这是多么糟糕,特别是在大公司里,写html和css的往往不是同一个人。
CSS Code复制内容到剪贴板
- // 烂透了
- html div tr td {..}
尽可能使用复合语法
CSS Code复制内容到剪贴板
- // 糟糕
- .someclass {
- padding-: 20px;
- padding-bottom: 20px;
- padding-left: 10px;
- padding-right: 10px;
- background: #000;
- background-image: url(../imgs/carrot.png);
- background-position: bottombottom;
- background-repeat: repeat-x;
- }
- // 好的
- .someclass {
- padding: 20px 10px 20px 10px;
- background: #000 url(../imgs/carrot.png) repeat-x bottombottom;
- }
避免不必要的重复
CSS Code复制内容到剪贴板
- // 糟糕
- .someclass {
- color: red;
- background: blue;
- font-size: 15px;
- }
- .otherclass {
- color: red;
- background: blue;
- font-size: 15px;
- }
- // 好的
- .someclass, .otherclass {
- color: red;
- background: blue;
- font-size: 15px;
- }
组织好的代码格式
代码的易读性和易维护性成正比。狼蚁网站SEO优化是我遵循的格式化方法。
CSS Code复制内容到剪贴板
- // 糟糕
- .someclass-a, .someclass-b, .someclass-c, .someclass-d {
- ...
- }
- // 好的
- .someclass-a,
- .someclass-b,
- .someclass-c,
- .someclass-d {
- ...
- }
- // 好的做法
- .someclass {
- background-image:
- linear-gradient(#000, #c),
- linear-gradient(#c, #ddd);
- box-shadow:
- 2px 2px 2px #000,
- 1px 4px 1px 1px #ddd inset;
- }
上一篇:CSS样式编写的简明指南
下一篇:使用CSS居中浮动元素的方法
长沙网站设计
- 如何自己建一个网站 自己想建个网站,怎么建
- 如何制作网站免费建站 创建网站免费注册
- html简单网页代码 html简单网页代码超链接
- dreamweaver网页制作 dreamweaver网页制作模板
- 上海网站建设 上海网站建设制作微信
- 如何制作网站和网页 如何制作一个网页
- html网页制作代码大全 端午节html网页制作代码大
- app开发公司 app开发公司前十名
- html网页制作 html网页制作文字居中
- app制作一个需要多少钱 请人制作一个app多少钱
- 成都网站制作 成都网站制作维护
- 百度建一个网站多少钱 百度做个公司网站要多少
- html+css网页制作成品 web网页制作成品css+javascrip
- html网页制作案例 html网页设计案例
- html+css网页制作成品 web网页制作成品css+javascrip
- 个人网站模板 个人网站模板HTML