Heim >Web-Frontend >CSS-Tutorial >Mehrere neue CSS-Funktionen, die Sie im Jahr 2022 kennen sollten (zum Lernen sammeln)
In diesem Artikel stellen wir Ihnen einige CSS neue Funktionen vor, auf die es sich im Jahr 2022 zu freuen lohnt und die Sie sich nicht entgehen lassen sollten. Lassen Sie uns gemeinsam sammeln und lernen!
Für CSS ist 2022 ein Jahr, auf das es sich zu freuen lohnt. Eine große Anzahl neuer Funktionen steht kurz bevor, einige haben bereits damit begonnen, sich in Browsern anzumelden, und einige werden möglicherweise im Jahr 2022 umfassende Browserunterstützung erhalten. Werfen wir einen Blick auf die neuen CSS-Funktionen, auf die es sich im Jahr 2022 zu freuen lohnt! (Empfohlenes Lernen: CSS-Video-Tutorial
1. Grundkonzeptmain, aside { container: inline-size; }@container kann ähnlich wie Medienabfragen verwendet werden. Beachten Sie, dass es einen Unterschied in der Art und Weise gibt, wie die Regeln in Klammern ausgedrückt werden (inline-size > 30em sollte in Containerabfragen anstelle von min-width: 30em verwendet werden). Dies ist Teil der Media Inquiry Level 4-Spezifikation. Wechseln Sie zum Flex-Layout, wenn die Containerbreite größer als 30rem ist:
@container (inline-size > 30em) { .card { display: flex; } }
Die CSS-Containment-Level-3-Spezifikation befindet sich derzeit in einem Arbeitsentwurf, was bedeutet, dass sich die Syntax jederzeit ändern kann.
3. Aktueller Status2. :has()1. Grundkonzepte
24203f2f45e6606542ba09fd2181843a
unterschiedlich formatieren, je nachdem, ob es 614eb9dc63b3fb809437a716aa228d24
enthält. 2. So verwenden Sie :has()
通常被称为“父选择器”,这个伪类使我们能够根据其后代选择一个元素。它有一些非常有趣的用例。例如,可以根据图像是否包含 614eb9dc63b3fb809437a716aa228d24
,而在24203f2f45e6606542ba09fd2181843a
中对图像进行不同的样式设置。
要设置包含c1a436a314ed609750bd7c7d319db4da
的2f8332c8dcfd5c7dec030a070bf652c3
元素的样式,可以执行以下操作:
section:has(h2) { background: lightgray; }
当 a1f02c36ba31691bcfe87b2722de723b
的父级 2f8332c8dcfd5c7dec030a070bf652c3
包含 c1a436a314ed609750bd7c7d319db4da
时,设置 a1f02c36ba31691bcfe87b2722de723b
So legen Sie den Stil des 2f8332c8dcfd5c7dec030a070bf652c3
-Elements fest, das c1a436a314ed609750bd7c7d319db4da enthält code> können Sie die folgenden Vorgänge ausführen:
section:has(h2) img { border: 5px solid lime; }
2f8332c8dcfd5c7dec030a070bf652c3
von a1f02c36ba31691bcfe87b2722de723b
c1a436a314ed609750bd7c7d319db4da enthält code> <code>a1f02c36ba31691bcfe87b2722de723b
Stil: @when media(min-width: 30em) and supports(display: subgrid) { } @else { }
Keine großen Browser unterstützen derzeit dieses Attribut, es ist jedoch in der Safari Technology Preview verfügbar.CSS Selectors Level 4 (offizielle Spezifikation): https://www.w3.org/TR/selectors-4 /Safari Technology Preview: https://developer.apple.com/safari/technology-preview/
:root { accent-color: lime; }
Das Ändern von Attributen wird derzeit in Browsern nicht unterstützt. Es ist noch am Anfang und wird noch diskutiert. Es wird nicht erwartet, dass es in diesem Jahr von Browsern umfassend unterstützt wird, aber es ist sicherlich eine sehr nützliche Eigenschaft, die es wert ist, beachtet zu werden.CSS Conditional Rules Module Level 5 (offizielle Spezifikation): https://www.w3.org/TR/css-conditional-5
:root { accent-color: lime; }
可以在单个元素上使用:
form { accent-color: lime; } input[type="checkbox"] { accent-color: hotpink; }
目前,accent-color 在 Chrome、Edge、Firefox 和 Safari 技术预览版中已经得到了支持。不支持该属性的的浏览器会直接使用默认颜色,并且输入是完全可用的。
CSS Basic User Interface Module Level 4(官方规范):https://www.w3.org/TR/css-ui-4/
我们可能已经很熟悉 Hex、RGB 和 HSL 颜色格式。CSS Color Module Levels 4 和 5 中包括一整套新的颜色函数,使我们能够以前所未有的方式在 CSS 中指定和操作颜色。它们包括:
hwb(), lab() 和 lch() 的使用方式与我 rgb() 和 hsl() 函数基本相同,都有一个可选的alpha 参数:
.my-element { background-color: lch(80% 100 50); } .my-element { background-color: lch(80% 100 50 / 0.5); }
color-mix() 将其他两种颜色混合后输出一种颜色。我们需要指定颜色插值方法作为第一个参数:
.my-element { background-color: color-mix(in lch, blue, lime); }
color-contrast() 需要一个基色来比较其他颜色。它将输出对比度最高的颜色,或者在提供额外关键字的情况下,输出列表中符合相应对比度的第一种颜色:
/* 输出对比度最高的颜色 */ .my-element { color: white; background-color: color-contrast(white vs, lightblue, lime, blue); } /* 输出符合AA对比度的第一种颜色 */ .my-element { color: white; background-color: color-contrast(white vs, lightblue, lime, blue to AA); }
Safari 目前在浏览器支持方面处于领先地位,从版本 15 就开始支持hwb()、 lch()、lab()、color(),color-mix() 和 color-contrast() 可以通过 flag 启用。Firefox 支持 hwb(),并且还标记了对 color-mix() 和 color-contrast() 的支持。令人惊讶的是,Chrome 现在还不支持这些函数。
在代码中提供样式兼容并不难:给定两种颜色规则,如果浏览器不支持第二种颜色规则,它将忽略第二种颜色规则:
.my-element { background-color: rgb(84.08% 0% 77.36%); background-color: lch(50% 100 331); }
这样,当浏览器支持该函数时,就可以直接使用了。
CSS Color Module Level 4(官方规范):https://www.w3.org/TR/css-color-4/
CSS Color Module Level 5(官方规范):https://www.w3.org/TR/css-color-5
层叠层让我们有更多的能力来管理CSS的“层叠”部分。目前,有几个因素决定了 CSS 代码中将应用哪些样式,包括选择器群众和出现的顺序。层叠层允许我们有效地将CSS分组(或者“分层”)。顺序较低的层中的代码将优先于较高层中的代码,即使较高层中的选择器具有更高的权重。
下面来看看层叠层的基本使用:
/* 按顺序创建图层 */ @layer reset, base, theme; /* 将CSS添加到每个层 */ @layer reset { } @layer base { h1.title { font-size: 5rem; } } @layer theme { h1 { font-size: 3rem; } }
theme 层中的CSS字体大小声明将覆盖base层中的字体大小声明,尽管后者选择器具有更高的权重。
最新版本的 Firefox 已经支持了层叠层,并且可以在 Chrome 和 Edge 中使用 flag 启用(Chrome 99 版本将全面支持层叠层)。看起来所有主流浏览器都在使用这个规范,所以希望尽快能得到更广泛的支持。
CSS Cascading and Inheritance Level 5(官方规范):https://www.w3.org/TR/css-cascade-5/
作为 CSS Grid Layout Module 2 规范的一部分,subgrid 允许元素在行轴或列轴上继承其父元素的网格。subgrid 对于解决各种用户界面挑战非常有用。
例如,以下面这个带有标题的图像为例。标题的长度各不相同,使用 subgrid 可以直接让它们对齐,而无需设置固定的高度。
首先将父元素设置为grid布局,将子元素的“grid-template-columns”或“grid-template-rows”属性设置为 subgrid:
.grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, auto); } .grid > figure { display: grid; grid-template-rows: subgrid; } .grid figcaption { grid-row: 2; }
实现效果:
完整代码:
html:
<div class="grid"> <figure> <img src='https://images.unsplash.com/photo-1633083018029-bd1d4d52cb19?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxNDU4OXwwfDF8cmFuZG9tfHx8fHx8fHx8MTY0NTE5NTYyMw&ixlib=rb-1.2.1&q=80&w=400' alt='Bluetit'> <figcaption>A colourful mix of blue, yellow, white and green makes the blue tit one of our most attractive and most recognisable garden visitors.</figcaption> </figure> <figure> <img src='https://images.unsplash.com/photo-1619976302135-5efbc2a7785a?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxNDU4OXwwfDF8cmFuZG9tfHx8fHx8fHx8MTY0NTE5NTY4NA&ixlib=rb-1.2.1&q=80&w=400' alt='Robin'> <figcaption>Robins sing nearly all year round and despite their cute appearance, they are aggressively territorial and are quick to drive away intruders.</figcaption> </figure> <figure> <img src='https://images.unsplash.com/photo-1623627733740-4724cb1fe84e?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxNDU4OXwwfDF8cmFuZG9tfHx8fHx8fHx8MTY0NTE5NTc4NQ&ixlib=rb-1.2.1&q=80&w=400' alt='Chaffinch'> <figcaption>The chaffinch is one of the most widespread and abundant bird in Britian and Ireland.</figcaption> </figure> </div>
CSS:
* { box-sizing: border-box; } body { font-family: "Open Sans", sans-serif; margin: 0; padding: max(1rem, 3vw); } figure { margin: 0; display: grid; /* grid-template-rows: subgrid; */ /* grid-row: 1 / 3; */ } img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; grid-row: 1 / 3; grid-column: 1; } figcaption { padding: 1rem; grid-column: 1; grid-row: 2; background: hsl(0 0% 0% / 0.6); color: white; } .grid { display: grid; max-width: 80rem; margin: 0 auto; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 1.5rem; } @media (min-width: 62em) { .grid { grid-template-rows: 1fr auto; } figure { grid-template-rows: subgrid; grid-row: 1 / 3; } }
演示demo:https://codepen.io/michellebarker/pen/YzERyor
值得注意的是,自 2019 年以来,Firefox 已经支持了 subgrid,但近三年后还没有其他浏览器跟进。有迹象表明 Chromium 团队已经开始着手实现它,所以可能有幸在今年看到它登陆 Chrome 和 Edge。
CSS Grid Layout Module Level 2(官方规范):https://www.w3.org/TR/css-grid-2/
@scroll-timeline 属性定义了一个AnimationTimeline,其时间值由滚动容器中的滚动进度决定(而不是时间决定)。一旦指定,@scroll-timeline 将通过使用animation-timeline 属性与CSS Animation相关联。
这里来看一个简单的例子:
/* 设置关键帧动画 */ @keyframes slide { to { transform: translateX(calc(100vw - 2rem)); } } /* 配置scroll timeline,这里将它命名为了slide-timeline */ @scroll-timeline slide-timeline { source: auto; orientation: vertical; scroll-offsets: 0%, 100%; /* 指定关键帧动画和 scroll-timeline */ .animated-element { animation: 1s linear forwards slide slide-timeline; }
我们也可以对scroll-offsets属性使用基于元素的偏移量,以在特定元素滚动到视图中时触发 timeline:
@scroll-timeline slide-timeline { scroll-offsets: selector(#element) end 0, selector(#element) start 1; }
如果对 @scroll-timeline 感兴趣,可以在 Chrome 中使用 flag 来启用它。当我们遇到一个复杂的动画时,可能需要使用 JavaScript 动画库来实现,但是对于相对简单的动画,使用该属性就可以减少不必要的import。
Scroll-linked Animations(官方规范):https://drafts.csswg.org/scroll-animations-1/
如果你熟悉 Sass,就会知道嵌套选择器的便利性。本质上,就是在父级中编写子级规则。嵌套可以使编写CSS代码更加方便,现在嵌套终于来到了原生 CSS!
从语法上讲,它与 Sass 相似。下面来给 class 为 card 中的 h2 子元素定义样式规则:
.card { color: red; & h2 { color: blue; } }
可以将其用于伪类和伪元素:
.link { color: red; &:hover, &:focus { color: blue; } }
这些就等价于下列 CSS 代码:
.link { color: red; } .link:hover, .link:focus { color: blue; }
目前还没有浏览器支持嵌套。如果你使用PostCSS,可以通过预置的 postcss-preset-env 插件来尝试嵌套。
CSS Nesting Module(官方规范):https://www.w3.org/TR/css-nesting-1/
现在正处于 CSS 蓬勃发展的时代。在写这篇文章时,我注意到这些新功能有一些共同点,它们都是为了帮助我们编写更好、更干净、更高效的代码。随着时间的推移,预处理工具(如 Sass)可能会变得不再重要。让我们一起期待更多新的 CSS 功能出现吧!
英文原文:https://www.smashingmagazine.com/2022/03/new-css-features-2022/
作者:Michelle Barker
译者:CUGGZ
(学习视频分享:web前端)
Das obige ist der detaillierte Inhalt vonMehrere neue CSS-Funktionen, die Sie im Jahr 2022 kennen sollten (zum Lernen sammeln). Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!