中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

div+css垂直居中的方法有哪些

發布時間:2021-08-10 18:36:53 來源:億速云 閱讀:133 作者:chen 欄目:web開發

這篇文章主要介紹“div+css垂直居中的方法有哪些”,在日常操作中,相信很多人在div+css垂直居中的方法有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”div+css垂直居中的方法有哪些”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

方法一:把一些 div 的顯示方式設置為表格,因此我們可以使用表格的 vertical-align屬性。
結構效果如下:
CSS

代碼如下:


div#wrapper {
   display: table;
   width: 500px;
   height: 500px;
   background-color: #c00;
}
div#row {
   display: table-row;
}
div#cell {
   display: table-cell;
   vertical-align: middle;
}

html

代碼如下:


<div id="wrapper">
   <div id="row">
       <div id="cell">
           If you want to sell sugar water for the rest of my life or want a chance to change the world            
       </div>
   </div>
</div>

優點:不用受內容高度的限制,簡單實現垂直居中;
缺點:不兼容ie6,7

方法二:這個方法使用絕對定位的 div,把它的 top 設置為 50%,margin-top 設置為負的 content 高度。這意味著對象必須在 CSS 中指定固定的高度。
結構效果如下:

CSS

代碼如下:


div#wrapper {
   position: relative;
   width: 500px;
   height: 500px;
   background-color: #c00;
}
div#content {
   position: absolute;
   top: 50%;
   left: 0;
   width: 400px;
   height: 300px;
   margin-top: -150px;
   background-color: pink;
}

html

代碼如下:


<div id="wrapper">
   <div id="content">
                 
   </div>
</div>

優點:兼容性好
缺點:必須知道內容盒子的高度才可以,有了這點限制;

方法三:這個方法和方法二的原理是一樣的。廢話不多說看代碼

CSS

代碼如下:


.wrap {
   height: 500px;
   width: 500px;
   background-color: pink;
}
.additional {
   height: 50%;
   margin-bottom: -120px;
}
#content {
height:240px;
width:70%;
   background-color: #000;
}

HTML

代碼如下:


<div class="wrap">
   <div class="additional"></div>
   <div id="content">
   </div>
</div>

優缺點和法二一樣,缺點嘛多了個額外的標簽;

方法四:這個方法使用了一個 position:absolute,有固定寬度和高度的 div。這個 div 被設置為 top:0; bottom:0;。但是因為它有固定高度,其實并不能和上下都間距為 0,因此 margin:auto; 會使它居中。使用 margin:auto;使塊級元素垂直居中是很簡單的。
結構效果如下:

CSS

代碼如下:


#content {
position:absolute;
top:0;
bottom:0;
left:0;
right:0;
margin:auto;
height:240px;
width:70%;
   background-color: #000;
}

HTML

代碼如下:


<div id="content">
Content here</div>

優點:非常簡單
缺點:不兼容ie6,7

方法五:這個方法只能將單行文本置中。只需要簡單地把 line-height 設置為那個對象的 height 值就可以使文本居中了。這個就不用實例了,您你看就明白;

到此,關于“div+css垂直居中的方法有哪些”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

炉霍县| 前郭尔| 武定县| 留坝县| 赫章县| 靖州| 金阳县| 巴楚县| 高邑县| 周至县| 通渭县| 淳安县| 扎赉特旗| 金塔县| 辽阳县| 昭通市| 达拉特旗| 镇康县| 乌拉特中旗| 琼中| 河南省| 秦皇岛市| 西昌市| 西充县| 凤山市| 洪泽县| 平阴县| 荥阳市| 卢湾区| 乌兰浩特市| 昆山市| 井陉县| 志丹县| 万山特区| 望城县| 葫芦岛市| 边坝县| 肥城市| 绍兴市| 尼玛县| 额济纳旗|