亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

css設置垂直居中的幾種方法

發布時間:2021-04-22 09:30:45 來源:億速云 閱讀:235 作者:栢白 欄目:web開發

這篇文章主要介紹了css設置垂直居中的幾種方法,具有一定借鑒價值,需要的朋友可以參考下。下面就和我一起來看看吧。

1、使用line-height屬性讓文字垂直居中;2、使用CSS3 flex布局讓文字垂直居中;3、使用絕對定位和transform讓塊狀元素垂直居中;4、使用flex布局讓塊狀元素垂直居中。

css設置文本文字垂直居中

1、line-height 使文字垂直居中

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>css 垂直居中</title>
<style>
.box{
    width: 300px;
    height: 300px;
    background: paleturquoise;
    line-height:300px;
}
</style>
</head>
<body>
<div class="box">css 垂直居中了--文本文字</div>
</body>
</html>

效果圖:

css設置垂直居中的幾種方法

這樣就能讓div中的文字水平垂直居中了

2、CSS3的flex布局 使文字垂直居中

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>css 垂直居中</title>
<style>
.box{
   width: 300px;
   height: 200px;
   background: paleturquoise;
   /*設置為伸縮容器*/
   display: -webkit-box;
   display: -moz-box;
   display: -ms-flexbox;
   display: -webkit-flex;
   display: flex;
   /*垂直居中*/
   -webkit-box-align: center;/*舊版本*/
   -moz-box-align: center;/*舊版本*/
   -ms-flex-align: center;/*混合版本*/
   -webkit-align-items: center;/*新版本*/
   align-items: center;/*新版本*/
}
</style>
</head>
<body>
<div class="box">css 垂直居中--文本文字(彈性布局)</div>
</body>
</html>

效果圖:

css設置垂直居中的幾種方法

css設置塊狀元素垂直居中

1、使用絕對定位和transform(未知元素高度)

如果我們不知道元素的高度,那么就需要先將元素定位到容器的中心位置,然后使用 transform 的 translate 屬性,將元素的中心和父容器的中心重合,從而實現垂直居中:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>css 垂直居中</title>
<style>
.box{
width: 300px;
    height: 300px;
    background: #ddd;
    position: relative;
}
.child{
background: #93BC49;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}
</style>
</head>
<body>
<div class="box">
    <div class="child">css 垂直居中,css 垂直居中,css 垂直居中,css 垂直居中,css 垂直居中</div>
</div>
</body>
</html>

效果圖:

css設置垂直居中的幾種方法

2、使用flex布局

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>css 垂直居中</title>
<style>
.box{
width: 300px;
    height: 300px;
    background: #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.child{
width: 300px;
    height: 100px;
    background: #08BC67;
    line-height: 100px;
}
</style>
</head>
<body>
<div class="box">
    <div class="child">css 垂直居中了--彈性布局</div>
</div>
</body>
</html>

效果圖:

css設置垂直居中的幾種方法

以上就是css設置垂直居中的幾種方法的詳細內容了,看完之后是否有所收獲呢?如果想了解更多相關內容,歡迎來億速云行業資訊!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

怀宁县| 威宁| 沭阳县| 沧源| 连州市| 广德县| 开原市| 蓬溪县| 桃园县| 苏尼特左旗| 长岛县| 田阳县| 江永县| 武陟县| 玉山县| 全椒县| 苏尼特左旗| 金昌市| 历史| 高唐县| 平潭县| 海原县| 大姚县| 溧阳市| 教育| 连城县| 江口县| 河南省| 宁陕县| 苏州市| 新野县| 吉木萨尔县| 新密市| 莱芜市| 荆州市| 南郑县| 嘉义市| 平凉市| 水城县| 汉川市| 德化县|