:Common CSS text centered display-Picture material template recommendation免费ppt模版下载-道格办公

Common CSS text centered display

class='text'>centered text</span> </div> CSS.box { display: flex; align-items: center; justify-content: center;}.text { line-height: 1 ; vertical-align: middle;} Use the line-height and vertical-align attributes to realize the vertical cent

1. Use line-height and vertical -align

html

<div class='box'>
<span>Test text</span>
</div>

css

.box{
width: 200px;
height: 200px;
overflow: hidden;
background: #ccc;
text-align: center;
}
.box span{
vertical-align: middle;
line-height: 200px;
}

2. Use display:table-cell to achieve horizontal and vertical centered display

html

<div class='table'>
<span class='cell'>test text test text test text test text</span> ;
</div>

css

.table{
display: table;
}
.cell{
display: table-cell;
vertical-align : middle;
text-align: center;
}

3. Use the positioning method position+transform Realize horizontal and vertical centered display

html

<div class='box'>
<span>test text test text test text test text</span>
< /div>

css

.box{
position: relative;
}
.box span{
position: absolute;
left: 50% ;
top: 50%;
transform: translate(-50%, -50%);
}

4. Use display: flex

html

<div class='flex'>
<span>test text test text test text test text</span>
< /div>

css

display:flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
>

5. Use display: box

html

<div class='box'>
<span>test text test text test text test text</span>
< /div>

css

display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-pack: center;
- webkit-box-align: center;
Click" Read the original text” Check out the demo! !

Articles are uploaded by users and are for non-commercial browsing only. Posted by: Lomu, please indicate the source: https://www.daogebangong.com/en/articles/detail/Common%20CSS%20text%20centered%20display.html

Like (810)
Reward 支付宝扫一扫 支付宝扫一扫
single-end

Related Suggestion