<返回更多

作为Web开发人员应避免的10种CSS做法

2021-05-12  今日头条  趣动云
加入收藏

作为Web开发人员应避免的10种css做法!

有人认为CSS很难学习,没有什么逻辑可言,而且还坑很多,可能是大家对CSS还不是很了解,因为我提出了五个我不喜欢的开发者习惯,并向大家展示如何避免它们。

1. 设置边距或填充,然后将其重置

.item {
  margin-right: 1.6rem;
}

.item:last-child {
  margin-right: 0;
}
复制代码
.item:not(:last-child) {
  margin-right: 1.6rem;
}
复制代码
.item:nth-child(n+2) {
  margin-left: 1.6rem;
}
复制代码
.item + .item {
  margin-left: 1.6rem;
}
复制代码

2. 为position:absolute/fixed的元素添加display:block

.button::before {
  content: "";
  position: absolute;
  display: block;
}
复制代码
.button::before {
  content: "";
  position: fixed;
  display: block;
}
复制代码

我们可以改成这样:

.button::before {
  content: "";
  position: absolute;
}
复制代码
.button::before {
  content: "";
  position: flxed;
}
复制代码

3. 使用transform: translate (-50%, -50%)居中

.parent {
  position: relative;
}

.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
复制代码
.parent {
  display: flex;
}

.child {
  margin: auto;
}
复制代码

4. 在块级元素上设置 width: 100%

<div class="parent">
  <div class="child">Item 1</div>
  <div class="child">Item 2</div>
  <div class="child">Item 3</div>
  <div class="child">Item 4</div>
</div>
复制代码
.parent {
  display: flex;
  flex-wrap: wrap;
}

.child {
  width: 100%;
}

@media (min-width: 1024px) {
  .child {
    width: 25%;
  }
}
复制代码
@media (min-width: 1024px) {
  .parent {
    display: flex;
    flex-wrap: wrap;
  }

  .child {
    width: 25%;
  }
}
复制代码

5. 为Flex布局下的子元素,设置display: block

.parent {
  display: flex;
}

.child {
  display: block;
}
复制代码

6. 不需要使用px⁣的时候使用了

.parent {
   padding: 0px;
}
复制代码
.parent {
   padding: 0;
}
复制代码

7. 重复相同的代码⁣

.parent {
   padding: 10px;
   margin: 20px;
}

.child {
   padding: 10px;
   margin: 20px
}
复制代码
.parent .child {
   padding: 10px;
   margin: 20px;
}
复制代码

8. 使用颜色名称

.parent {
  color: red
}
复制代码
.parent {
  color: #fb0100;
}
复制代码

9. 不用属性简写的方式

.parent {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-left: 10px;
}
复制代码
.parent {
  margin: 10px;
}
复制代码

10. 没有备用字体font fallback⁣

.parent {
  font-family: Georgia;
}
复制代码
.parent {
  font-family: Georgia, Arial, sans-serif;
}
复制代码
声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>