2024年新的原生嵌套CSS特性:绝对改变游戏规则

开发 前端
你通常会感到压力,浪费大量时间重复外部元素名称。难怪SASS和LESS变得如此受欢迎。

新的原生嵌套CSS特性彻底改变了前端开发。

❌ 之前:

你会如何为这些嵌套的HTML元素添加样式?

<section>
  你好!
  <div>
    <p>
      <span>codingbeautydev.com</span> -- 以编码为激情
    </p>
    <p>
      编码帮助你实现目的感和成长。
    </p>
  </div>
</section>

你通常会感到压力,浪费大量时间重复外部元素名称。

section {
  font-family: Arial;
}

section div {
  font-size: 1.5em;
}

section div p {
  color: blue;
}

section div p span {
  font-weight: bold;
}

难怪SASS和LESS变得如此受欢迎。

✅ 但现在:使用原生CSS:

变得更加清晰和简单。所有样式现在都被封装在一起,而不是散落各处。

section {
  font-family: Arial;
  div {
    font-size: 1.2em;
    p {
      color: blue;
      span {
        font-weight: bold;
      }
    }
  }
}

就像面向对象编程中的封装一样直观:

// ❌ redundancy
// ❌ 冗余
const personName = 'Tari Ibaba';
const personSite = 'codingbeautydev.com';
const personColor = '🔵blue';

// ✅ encapsulate field
// ✅ 封装字段
class Person {
  name = 'Tari Ibaba';
  site = 'codingbeautydev.com';
  color = '🔵blue';
}

在某些浏览器中,你可能需要使用&:

section {
  font-family: Arial;
  & div {
    font-size: 1.2em;
    & p {
      color: blue;
      & span {
        font-weight: bold;
      }
    }
  }
}

那么类和ID呢?

如果你想通过class或id属性来为嵌套元素添加样式怎么办?

<section class="class1">
  你好!
  <div id="id1">
    <p class="class2">
      <span id="url">codingbeautydev.com</span> -- 以编码为激情
    </p>
    <p>
      编码具有认知挑战性和精神刺激性。
    </p>
  </div>
</section>

嵌套CSS将非常相似:

.class {
  font-family: Arial;
  #id1 {
    font-size: 1.2em;
    .class2 {
      color: purple;
      #url {
        font-weight: bold;
      }
    }
  }
}

它也适用于兄弟选择器:

div {
  section {
    + p {
      color: blue;
    }
    ~ p {
      color: red;
    }
  }
}

伪类和伪元素

是的:

button {
  background-color: blue;
  :hover {
    background-color: yellow;
  }
}

媒体查询

嵌套CSS的另一个巨大卖点:

❌ 之前:

创建媒体查询很混乱,查询样式和元素的主要样式是分开的:

.hamburger {
  display: none;
}

.header {
  font-size: 40px;
}

@media (orientation: landscape) {
  .header {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hamburger {
    display: block;
  }
  .header {
    font-size: 24px;
  }
}

✅ 现在:

让元素样式包含查询样式比让查询样式包含元素样式的小片段更直观。

嵌套CSS让你可以轻松做到这一点:

.hamburger {
  display: none;

  @media(max-width: 480px) {
    display: block;
  }
}

.header {
  font-size: 40px;

  @media(orientation: landscape) {
    font-size: 32px;
  }

  @media(max-width: 480px) {
    font-size: 24px;
  }
}

使用原生嵌套CSS,你可以更直观地创建样式。

SASS现在基本上没用了 — 特别是现在我们在CSS中也有了原生变量:

$base-font-size: 16px;
$gutter-width: 10px;

.container {
  padding: calc($gutter-width * 2);
  font-size: $base-font-size;
}

.heading {
  font-size: calc($base-font-size * 1.5);
}
责任编辑:武晓燕 来源: 大迁世界
相关推荐

2024-07-17 08:27:29

2024-09-20 08:36:22

2021-10-15 11:28:06

物联网边缘计算IoT

2023-05-11 14:07:29

2019-07-25 06:49:26

2012-10-25 13:46:42

2024-10-12 08:35:32

2013-08-14 10:43:37

2023-12-29 14:17:16

2020-08-19 09:45:10

IBMAIOps混合多云管理

2024-02-23 16:12:47

2023-08-04 08:00:00

ControlNet医学图像

2011-12-28 21:12:10

移动支付

2023-06-02 10:36:59

2020-11-19 17:36:10

IT 运营

2021-01-28 12:37:40

物联网体育行业IOT

2022-09-30 14:32:23

人工智能数据隐私游戏规则

2018-01-14 16:01:33

2016-06-30 10:38:34

大数据备份恢复

2018-12-07 16:08:28

Aruba网络管理
点赞
收藏

51CTO技术栈公众号