flex布局高级技巧

让CSS flex布局最后一行列表左对齐的N种方法

探索CSS单行文字居中,多行文字居左的实现方式

CSS单行居中多行居左

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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.text1::first-line {
/*匹配首行*/
text-align-last: center;
/*最后一行居中*/
}
</style>
<style type="text/css">
.content2 {
text-align: center;
}

.text2 {
display: inline-block;
text-align: left;
}
</style>
<style type="text/css">
.text3 {
width: fit-content;
width: -moz-fit-content; //火狐需要-moz-前缀
margin: 0 auto;
}
</style>
<style type="text/css">
.text4 {
display: inline-block;
position: relative;
left: 50%;
transform: translateX(-50%);
}
</style>
<style type="text/css">
.text5 {
display: table;
margin: 0 auto;
}
</style>
<style type="text/css">
.text6 {
display: flex;
justify-content: center;
}
</style>
<style type="text/css">
.text7 {
display: grid;
justify-items: center;
}
</style>
<style type="text/css">
.content8 {
position: relative;
float: left;
left: 50%;
/**父级设置50%**/
}

.text8 {
position: relative;
float: left;
left: -50%;
/**子级设置-50%**/
}
</style>
</head>

<body>
<p class="text1">这段文字能不能这样判断一下,当文字不足一行时,让它居中显示,当文字超过一行就让它居左</p>

<div class="content2">
<p class="text2">这段文字能不能这样判断一下,当文字不足一行时,让它居中显示,当文字超过一行就让它居左</p>
</div>

<p class="text3">这段文字能不能这样判断一下,当文字不足一行时,让它居中显示,当文字超过一行就让它居左</p>
<p class="text4">这段文字能不能这样判断一下,当文字不足一行时,让它居中显示,当文字超过一行就让它居左</p>
<p class="text5">这段文字能不能这样判断一下,当文字不足一行时,让它居中显示,当文字超过一行就让它居左</p>
<p class="text6">这段文字能不能这样判断一下,当文字不足一行时,让它居中显示,当文字超过一行就让它居左</p>
<p class="text7">这段文字能不能这样判断一下,当文字不足一行时,让它居中显示,当文字超过一行就让它居左</p>

<div class="content8">
<p class="text8">这段文字能不能这样判断一下,当文字不足一行时,让它居中显示,当文字超过一行就让它居左</p>
</div>
</body>

</html>