返回正文
Are you an LLM? You can read better optimized documentation at /zh-CN/blog/2025-10/css-nb.md for this page in Markdown format
CSS3 高级写法指南
CSS3 为前端开发者带来了许多强大的新特性,掌握这些高级写法可以显著提升开发效率和页面视觉效果。本文将通过丰富的代码示例,详细介绍实用的 CSS3 高级技巧。
变量与自定义属性(CSS Custom Properties)
CSS 变量让样式管理更加系统化,特别适合大型项目和主题切换场景。
css
/* 定义全局变量 */
:root {
--primary-color: #3498db;
--secondary-color: #2ecc71;
--danger-color: #e74c3c;
--text-color: #333;
--light-gray: #f5f5f5;
--spacing-unit: 16px;
--border-radius: 4px;
--box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* 使用变量 */
.button {
background-color: var(--primary-color);
color: white;
padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 1.5);
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
transition: all 0.3s ease;
}
.button:hover {
background-color: color-mod(var(--primary-color) blackness(15%));
transform: translateY(-2px);
}
/* 主题切换示例 */
.dark-theme {
--primary-color: #2980b9;
--text-color: #ecf0f1;
--light-gray: #2c3e50;
}
/* 嵌套变量示例 */
.card {
--card-padding: calc(var(--spacing-unit) * 1.5);
padding: var(--card-padding);
background: white;
border-radius: calc(var(--border-radius) * 2);
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
高级选择器
结构伪类选择器
css
/* 表格斑马纹效果 */
.table-striped tr:nth-child(even) {
background-color: var(--light-gray);
}
/* 表单验证状态 */
input:required {
border-left: 3px solid var(--danger-color);
}
input:valid {
border-left-color: var(--secondary-color);
}
/* 导航菜单最后一个元素无分隔线 */
.nav-item:not(:last-child)::after {
content: "|";
margin: 0 10px;
color: #ccc;
}
/* 复杂选择示例 */
.article-list > li:first-child:nth-last-child(n+4),
.article-list > li:first-child:nth-last-child(n+4) ~ li {
width: 25%;
float: left;
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
属性选择器
css
/* 文件类型图标 */
a[href$=".pdf"]::after {
content: " (PDF)";
color: var(--danger-color);
}
a[href^="https"]::before {
content: "🔗 ";
}
/* 社交媒体链接样式 */
a[href*="twitter"] {
color: #1da1f2;
}
a[href*="facebook"] {
color: #3b5998;
}
/* 表单输入提示 */
input[name="email"]::placeholder {
color: #999;
font-style: italic;
}
/* 自定义属性选择器 */
[data-tooltip] {
position: relative;
cursor: pointer;
}
[data-tooltip]:hover::after {
content: attr(data-tooltip);
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
background: #333;
color: white;
padding: 5px 10px;
border-radius: var(--border-radius);
font-size: 0.8em;
white-space: nowrap;
z-index: 10;
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
灵活的布局技术
Flexbox 高级用法
css
/* 圣杯布局 */
.holy-grail {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.holy-grail-header,
.holy-grail-footer {
flex: 0 0 60px;
background: var(--primary-color);
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.holy-grail-body {
display: flex;
flex: 1;
}
.holy-grail-nav {
order: -1;
width: 200px;
background: var(--light-gray);
padding: var(--spacing-unit);
}
.holy-grail-content {
flex: 1;
padding: var(--spacing-unit);
}
.holy-grail-ads {
width: 150px;
background: var(--light-gray);
padding: var(--spacing-unit);
}
/* 平均分布项目 */
.equal-distribution {
display: flex;
justify-content: space-between;
}
.equal-distribution > * {
flex: 0 1 auto;
margin: 0 var(--spacing-unit);
}
.equal-distribution > :first-child {
margin-left: 0;
}
.equal-distribution > :last-child {
margin-right: 0;
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Grid 布局
css
/* 响应式图片画廊 */
.gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
grid-gap: var(--spacing-unit);
grid-auto-flow: dense;
}
.gallery-item {
position: relative;
overflow: hidden;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.gallery-item:hover img {
transform: scale(1.05);
}
/* 杂志布局 */
.magazine-layout {
display: grid;
grid-template-areas:
"header header header"
"main main sidebar"
"feature feature feature"
"footer footer footer";
grid-template-columns: 1fr 1fr 300px;
grid-template-rows: auto 1fr auto auto;
gap: var(--spacing-unit);
min-height: 100vh;
}
.magazine-header { grid-area: header; }
.magazine-main { grid-area: main; }
.magazine-sidebar { grid-area: sidebar; }
.magazine-feature { grid-area: feature; }
.magazine-footer { grid-area: footer; }
/* 12列网格系统 */
.grid-12 {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: var(--spacing-unit);
}
.col-3 { grid-column: span 3; }
.col-6 { grid-column: span 6; }
.col-12 { grid-column: span 12; }
@media (max-width: 768px) {
.col-3, .col-6 { grid-column: span 12; }
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
高级动画与过渡
自定义缓动函数
css
/* 弹跳动画 */
@keyframes bounce {
0%, 100% { transform: translateY(0); }
25% { transform: translateY(-20px); }
50% { transform: translateY(0); }
75% { transform: translateY(-10px); }
}
.bounce-element {
animation: bounce 1s ease infinite;
}
/* 加载动画 */
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.loading-spinner {
width: 40px;
height: 40px;
border: 4px solid rgba(0, 0, 0, 0.1);
border-radius: 50%;
border-top-color: var(--primary-color);
animation: spin 1s linear infinite;
}
/* 路径动画 */
@keyframes draw {
to { stroke-dashoffset: 0; }
}
.svg-path {
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
animation: draw 5s ease-in-out forwards;
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
多步骤动画
css
/* 复杂页面过渡 */
@keyframes pageTransition {
0% {
opacity: 0;
transform: translateY(20px);
}
30% {
opacity: 1;
transform: translateY(0);
}
70% {
transform: translateY(0);
}
100% {
transform: translateY(-10px);
opacity: 1;
}
}
.page-enter {
animation: pageTransition 0.8s ease-out forwards;
}
/* 3D翻转卡片 */
.flip-card {
perspective: 1000px;
}
.flip-card-inner {
position: relative;
width: 100%;
height: 300px;
transition: transform 0.8s;
transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
}
.flip-card-back {
background-color: var(--primary-color);
color: white;
transform: rotateY(180deg);
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
高级视觉效果
混合模式
css
/* 图片叠加效果 */
.image-overlay {
position: relative;
width: 100%;
height: 400px;
overflow: hidden;
}
.image-overlay img {
width: 100%;
height: 100%;
object-fit: cover;
}
.overlay-content {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: white;
background-blend-mode: overlay;
background-image: linear-gradient(135deg, rgba(52, 152, 219, 0.8), rgba(46, 204, 113, 0.8));
}
/* 文字混合效果 */
.text-blend {
font-size: 120px;
font-weight: bold;
background: url('https://example.com/image.jpg') center/cover;
-webkit-background-clip: text;
background-clip: text;
color: transparent;
mix-blend-mode: multiply;
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
滤镜效果
css
/* 图片滤镜库 */
.filter-grayscale { filter: grayscale(100%); }
.filter-sepia { filter: sepia(100%); }
.filter-blur { filter: blur(3px); }
.filter-brightness { filter: brightness(150%); }
.filter-contrast { filter: contrast(200%); }
.filter-saturate { filter: saturate(50%); }
.filter-hue-rotate { filter: hue-rotate(90deg); }
.filter-invert { filter: invert(100%); }
.filter-opacity { filter: opacity(50%); }
.filter-drop-shadow { filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.5)); }
/* 组合滤镜 */
.vintage-effect {
filter: sepia(60%) contrast(110%) saturate(85%) brightness(90%);
}
.glow-effect {
filter: drop-shadow(0 0 5px var(--primary-color))
drop-shadow(0 0 10px var(--primary-color));
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
裁剪与遮罩
css
/* 自定义形状 */
.hexagon {
clip-path: polygon(
25% 0%,
75% 0%,
100% 50%,
75% 100%,
25% 100%,
0% 50%
);
}
/* 波浪形分隔线 */
.wave-divider {
position: relative;
height: 60px;
background: var(--primary-color);
}
.wave-divider::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 15px;
background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23ffffff"/></svg>');
background-size: cover;
}
/* 遮罩效果 */
.masked-image {
width: 300px;
height: 200px;
-webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 300 200" xmlns="http://www.w3.org/2000/svg"><circle cx="150" cy="100" r="100"/></svg>') center/cover;
mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 300 200" xmlns="http://www.w3.org/2000/svg"><circle cx="150" cy="100" r="100"/></svg>') center/cover;
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
响应式设计高级技巧
容器查询
css
/* 支持容器查询的浏览器 */
.responsive-component {
container-type: inline-size;
container-name: component;
}
/* 当容器宽度 ≥ 600px 时应用 */
@container component (min-width: 600px) {
.responsive-component {
display: grid;
grid-template-columns: 1fr 2fr;
gap: var(--spacing-unit);
}
}
/* 嵌套容器查询 */
.outer-container {
container-type: inline-size;
}
.inner-container {
container-type: inline-size;
container-name: inner;
}
@container outer (min-width: 800px) {
@container inner (min-width: 400px) {
.nested-element {
display: flex;
}
}
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
特性查询
css
/* 检查浏览器是否支持CSS Grid */
@supports (display: grid) {
.grid-layout {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: var(--spacing-unit);
}
}
/* 不支持Grid的回退方案 */
@supports not (display: grid) {
.grid-layout {
display: flex;
flex-wrap: wrap;
}
.grid-layout > * {
flex: 0 0 250px;
margin: calc(var(--spacing-unit) / 2);
}
}
/* 检查浏览器是否支持CSS变量 */
@supports (color: var(--primary-color)) {
.theme-aware {
color: var(--text-color);
}
}
@supports not (color: var(--primary-color)) {
.theme-aware {
color: #333;
}
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
视口单位
css
/* 响应式排版 */
.responsive-text {
font-size: clamp(1rem, 2.5vw + 0.5rem, 2rem);
line-height: 1.6;
}
/* 全屏英雄区域 */
.hero-section {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: calc(var(--spacing-unit) * 2);
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
}
/* 视口相对边距 */
.view-aware {
margin: 5vh 10vw;
padding: 2vh 5vw;
}
/* 响应式卡片 */
.responsive-card {
width: 100%;
max-width: 400px;
margin: 0 auto;
aspect-ratio: 1/1.5;
background: white;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
overflow: hidden;
}
@media (min-width: 768px) {
.responsive-card {
max-width: 600px;
aspect-ratio: 16/9;
}
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
性能优化技巧
will-change 属性
css
/* 优化动画性能 */
.animated-element {
will-change: transform, opacity;
backface-visibility: hidden;
perspective: 1000px;
}
/* 滚动优化 */
.scroll-container {
will-change: scroll-position;
overflow-y: scroll;
height: 300px;
}
/* 复杂动画元素 */
.complex-animation {
will-change: contents;
transform: translateZ(0);
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
硬件加速
css
/* 强制硬件加速 */
.hardware-accelerated {
transform: translateZ(0);
backface-visibility: hidden;
perspective: 1000px;
}
/* 优化滚动性能 */
.scroll-optimized {
-webkit-overflow-scrolling: touch; /* iOS平滑滚动 */
overflow-scrolling: touch; /* 非标准属性,部分浏览器支持 */
}
/* 减少重绘区域 */
.optimized-element {
contain: layout style paint;
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
减少重绘
css
/* 避免使用会触发重排的属性 */
.bad-practice {
width: 100px;
height: 100px;
margin: 10px;
border: 5px solid red;
padding: 10px;
/* 每次修改都会触发多次重排 */
}
/* 更好的做法 */
.better-practice {
box-sizing: border-box;
width: 100px;
height: 100px;
margin: 10px;
padding: 10px;
border: 5px solid red;
/* 只触发一次重排 */
}
/* 避免使用table布局 */
.avoid-table {
display: table; /* 会导致频繁重排 */
}
/* 使用flex或grid替代 */
.prefer-flex {
display: flex; /* 更高效的布局方式 */
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
实用函数与计算
calc() 函数
css
/* 动态计算尺寸 */
.dynamic-width {
width: calc(100% - 40px);
}
.responsive-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(calc(300px - 20px), 1fr));
gap: calc(var(--spacing-unit) * 2);
}
/* 嵌套计算 */
.nested-calc {
padding: calc(var(--spacing-unit) * 2);
margin: calc(calc(var(--spacing-unit) * 2) * -1);
}
/* 结合变量使用 */
.variable-calc {
font-size: calc(var(--base-font-size) * 1.2);
line-height: calc(var(--base-line-height) * 1.5);
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
min() 和 max() 函数
css
/* 限制最大宽度 */
.max-width-container {
width: min(100%, 1200px);
margin: 0 auto;
}
/* 确保最小高度 */
.min-height-section {
min-height: max(50vh, 300px);
}
/* 响应式字体大小 */
.responsive-font {
font-size: min(max(1rem, 2vw), 1.5rem);
}
/* 复杂响应式布局 */
.complex-layout {
display: grid;
grid-template-columns: minmax(200px, 1fr) minmax(300px, 2fr);
gap: max(16px, 2vw);
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
clamp() 函数
css
/* 完美响应式字体 */
.perfect-font {
font-size: clamp(1rem, 2.5vw, 2rem);
}
/* 响应式间距 */
.responsive-spacing {
padding: clamp(16px, 5vw, 64px);
}
/* 动态卡片宽度 */
.dynamic-card {
width: clamp(300px, 50%, 800px);
margin: 0 auto;
}
/* 复杂响应式控制 */
.complex-responsive {
font-size: clamp(0.8rem, 1.5vw + 0.5rem, 1.2rem);
line-height: clamp(1.2, 1.5vw + 0.5, 1.8);
padding: clamp(1rem, 3vw, 3rem);
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
高级伪元素技巧
自定义组件
css
/* 自定义复选框 */
.custom-checkbox {
position: relative;
margin: var(--spacing-unit) 0;
}
.custom-checkbox input {
position: absolute;
opacity: 0;
width: 0;
height: 0;
}
.custom-checkbox input + label {
display: inline-flex;
align-items: center;
cursor: pointer;
}
.custom-checkbox input + label::before {
content: "";
display: inline-block;
width: 1.2em;
height: 1.2em;
margin-right: 0.5em;
border: 2px solid #ccc;
border-radius: 4px;
transition: all 0.3s ease;
}
.custom-checkbox input:checked + label::before {
background-color: var(--primary-color);
border-color: var(--primary-color);
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9,20.42L2.79,14.21L5.62,11.38L9,14.77L18.88,4.88L21.71,7.71L9,20.42Z'/></svg>");
background-size: 70%;
background-repeat: no-repeat;
background-position: center;
}
/* 自定义单选按钮 */
.custom-radio input + label::before {
border-radius: 50%;
}
.custom-radio input:checked + label::before {
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle fill='white' cx='12' cy='12' r='5'/></svg>");
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
装饰性元素
css
/* 卡片标题装饰线 */
.card-header {
position: relative;
padding-bottom: calc(var(--spacing-unit) / 2);
margin-bottom: var(--spacing-unit);
}
.card-header::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background-color: var(--primary-color);
}
/* 引号装饰 */
.blockquote {
position: relative;
padding: var(--spacing-unit);
margin: var(--spacing-unit) 0;
font-style: italic;
color: #666;
}
.blockquote::before,
.blockquote::after {
content: open-quote;
font-size: 3em;
line-height: 0.1em;
vertical-align: -0.4em;
color: var(--primary-color);
}
.blockquote::after {
content: close-quote;
}
/* 链接下划线动画 */
.animated-link {
position: relative;
text-decoration: none;
color: var(--primary-color);
}
.animated-link::after {
content: "";
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 2px;
background-color: var(--primary-color);
transition: width 0.3s ease;
}
.animated-link:hover::after {
width: 100%;
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
模块化 CSS 架构
BEM 命名方法
css
/* Block 组件 */
.card {}
/* Element 元素 */
.card__header {}
.card__body {}
.card__footer {}
/* Modifier 修饰符 */
.card--featured {}
.card--dark {}
.card--horizontal {}
/* 完整示例 */
.menu {
list-style: none;
padding: 0;
margin: 0;
}
.menu__item {
display: inline-block;
margin-right: var(--spacing-unit);
}
.menu__link {
text-decoration: none;
color: var(--text-color);
padding: calc(var(--spacing-unit) / 2) 0;
display: block;
}
.menu__link:hover {
color: var(--primary-color);
}
.menu__link--active {
color: var(--primary-color);
font-weight: bold;
border-bottom: 2px solid var(--primary-color);
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
CSS-in-JS 风格
css
/* 使用描述性类名 */
.marginBottomLarge { margin-bottom: 32px; }
.paddingHorizontalSmall { padding-left: 8px; padding-right: 8px; }
.textAlignCenter { text-align: center; }
.backgroundColorPrimary { background-color: var(--primary-color); }
.colorWhite { color: white; }
.borderRadiusRound { border-radius: 50%; }
/* 组合使用 */
.heroSection {
composes: paddingVerticalLarge textAlignCenter backgroundColorPrimary colorWhite from global;
min-height: 80vh;
display: flex;
align-items: center;
justify-content: center;
}
.avatar {
composes: borderRadiusRound from global;
width: 100px;
height: 100px;
object-fit: cover;
border: 3px solid white;
box-shadow: var(--box-shadow);
}
/* 实用工具优先的CSS */
.u-marginBottomNone { margin-bottom: 0 !important; }
.u-marginBottomTiny { margin-bottom: 4px !important; }
.u-marginBottomSmall { margin-bottom: 8px !important; }
.u-marginBottomMedium { margin-bottom: 16px !important; }
.u-marginBottomLarge { margin-bottom: 32px !important; }
.u-marginBottomHuge { margin-bottom: 64px !important; }
.u-textCenter { text-align: center !important; }
.u-textRight { text-align: right !important; }
.u-textLeft { text-align: left !important; }
.u-displayBlock { display: block !important; }
.u-displayInline { display: inline !important; }
.u-displayInlineBlock { display: inline-block !important; }
.u-displayFlex { display: flex !important; }
.u-displayInlineFlex { display: inline-flex !important; }1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
总结
CSS3 的高级特性为前端开发提供了强大的工具集,合理使用这些技术可以:
- 提升开发效率:通过变量、函数和模块化架构减少重复代码
- 创造更丰富的视觉效果:利用滤镜、混合模式和裁剪创建独特设计
- 实现更灵活的布局:Flexbox和Grid让复杂布局变得简单
- 优化性能:通过硬件加速和减少重绘提升页面响应速度
- 改善可维护性:采用BEM等命名约定使代码更易理解
在实际开发中,建议根据项目需求和浏览器支持情况,逐步引入这些高级特性。同时,保持代码的可读性和可维护性同样重要,避免过度使用复杂技巧导致代码难以理解。
掌握这些 CSS3 高级写法后,你将能够更高效地实现设计需求,创造出更出色的用户界面体验。随着前端技术的不断发展,持续学习和实践新的 CSS 特性将帮助你保持竞争力,成为更优秀的前端开发者。
VN/A |
本站访客数
--次 本站总访问量
--人次 