欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

前端小哥哥看我代码了……

程序员文章站 2022-03-02 18:05:25
...

1. 组件命名规则:单词首字母大写 ( eg: MyName );

2. css 样式 :position: absolute ;(冒号后面空一个格);

3.css-modules ( css 代码作用域问题)

4.颜色 #FFFFFF 能用 3 个就尽量不用 6个的 用#fff ;

5. 文件夹图片都用 img ,要统一

6 . less 

.wrapper {
  position: absolute;
  width: 18%;
  float: left;
  height: 100%;
  left: 30%;
  top: 20px;

  .title {
    margin-bottom: 27px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-top: 20px;
  }
7. css 书写 顺序:http://www.shejidaren.com/css-written-specifications.html (感觉写的不错哦~)