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

溫馨提示×

溫馨提示×

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

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

CSS中如何使用box-align屬性控制子元素布局

發布時間:2021-09-14 14:10:40 來源:億速云 閱讀:112 作者:小新 欄目:web開發

這篇文章主要介紹CSS中如何使用box-align屬性控制子元素布局,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

box-align 說明
box-align屬性, 指定元素內子要素縱方向排列指定時使用。<規定框中子元素的顯示次序。>
容器元素比子元素大很多的情況下,使用box-align屬性,可以指定子元素的排序順序,并且可以指定子元素如何表示。
還有,縱方向排列一說,可以解釋為元素內子元素的配置方向默認值為水平,使用此屬性后垂直方向進行排列。也可以使用 box-orient:vertical來設置子元素排列方向。

屬性值
start:標準方向元素,各子要素上端沿著元素上端進行排列,余下的位置向下排序, 反方向元素的話,則沿著下端進行排序,余下的位置向上排序。<對于正常方向的框,每個子元素的上邊緣沿著框的頂邊放置。 對于反方向的框,每個子元素的下邊緣沿著框的底邊放置。>
end:標準方向元素,各子要素下端沿著元素下端進行排列,余下的位置向上排序, 反方向元素的話,則沿著上端進行排序,余下的位置向下排序。<對于正常方向的框,每個子元素的下邊緣沿著框的底邊放置。 對于反方向的框,每個子元素的上邊緣沿著框的頂邊放置。>
center:剩余空間,進行均等分配。<均等地分割多余的空間,一半位于子元素之上,另一半位于子元素之下。>
baseline:inline-axis和horizontal的場合,所有子元素baseline配置排列<如果 box-orient 是inline-axis或horizontal,所有子元素均與其基線對齊。>
stretch:各子元素按照容器元素的高來自動排序(默認值)

關于居中
原來水平垂直居中寫法為:height=line-height 實現垂直居中text-align實現水平居中
現在使用box-align實現垂直居中box-pack 實現水平居中

<!DOCTYPE html>   
  
<html>   
<head>   
    <title>水平及垂直居中</title>   
</head>   
<body >   
<div style="width:300px; height: 300px; background-color: #ccc;  
  line-height: 300px; text-align: center;">   
    <input type="button" value="原有居中方式">   
</div>   
<div style="width:300px; height: 300px; background-color: #aaa;  
 display:-webkit-box;-webkit-box-pack: center;  
   ; -webkit-box-align:center">   
    <input type="button" value="css3的居中方式">   
</div>   
</body>   
</html>

實例代碼

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
<html xmlns="http://www.w3.org/1999/xhtml">   
<head>   
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />   
<title> box-align </title>   
<style>   
div.prefix_sample1 {   
width:500px; height:100px;   
background-color:yellow;   
display:-moz-box;   
display:-webkit-box;   
display:-o-box;   
display:-ms-box;   
-moz-box-align:start;   
-webkit-box-align:start;   
-o-box-align:start;   
-ms-box-align:start;   
}   
div.prefix_sample2 {   
width:500px; height:100px;   
background-color:yellow;   
display:-moz-box;   
display:-webkit-box;   
display:-o-box;   
display:-ms-box;   
-moz-box-align:end;   
-webkit-box-align:end;   
-o-box-align:end;   
-ms-box-align:end;   
}   
div.prefix_sample3 {   
width:500px; height:100px;   
background-color:yellow;   
display:-moz-box;   
display:-webkit-box;   
display:-o-box;   
display:-ms-box;   
-moz-box-align:center;   
-webkit-box-align:center;   
-o-box-align:center;   
-ms-box-align:center;   
}   
div.prefix_sample4 {   
width:500px; height:100px;   
background-color:yellow;   
display:-moz-box;   
display:-webkit-box;   
display:-o-box;   
display:-ms-box;   
-moz-box-align:baselinebaseline;   
-webkit-box-align:baselinebaseline;   
-o-box-align:baselinebaseline;   
-ms-box-align:baselinebaseline;   
}   
div.prefix_sample5 {   
width:500px; height:100px;   
background-color:yellow;   
display:-moz-box;   
display:-webkit-box;   
display:-o-box;   
display:-ms-box;   
-moz-box-align:stretch;   
-webkit-box-align:stretch;   
-o-box-align:stretch;   
-ms-box-align:stretch;   
}   
    
div.aka {background-color:red;}   
div.midori {background-color:green;}   
div.ao {background-color:blue;}   
</style>   
    
</head>   
    
<body>   
<h5>box-align:start;</h5>   
<div class="prefix_sample1">   
<div class="aka">abcde</div>   
<div class="midori">abcde</div>   
<div class="ao">abcde</div>   
</div>   
    
<h5>box-align:end;</h5>   
<div class="prefix_sample2">   
<div class="aka">abcde</div>   
<div class="midori">abcde</div>   
<div class="ao">abcde</div>   
</div>   
    
<h5>box-align:center; </h5>   
<div class="prefix_sample3">   
<div class="aka">abcde</div>   
<div class="midori">abcde</div>   
<div class="ao">abcde</div>   
</div>   
    
<h5>box-align:baselinebaseline; </h5>   
<div class="prefix_sample4">   
<div class="aka">abcde</div>   
<div class="midori">abcde</div>   
<div class="ao">abcde</div>   
</div>   
    
<h5>box-align:stretch; </h5>   
<div class="prefix_sample5">   
<div class="aka">abcde</div>   
<div class="midori">abcde</div>   
<div class="ao">abcde</div>   
</div>   
    
</body>   
</html>

實例圖
CSS中如何使用box-align屬性控制子元素布局

以上是“CSS中如何使用box-align屬性控制子元素布局”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

容城县| 连平县| 平舆县| 桂东县| 渝中区| 晋城| 虹口区| 厦门市| 浙江省| 洞头县| 特克斯县| 隆子县| 开化县| 涿鹿县| 尼木县| 龙泉市| 西畴县| 商都县| 保山市| 肥东县| 兴文县| 绥德县| 大名县| 黑河市| 宾阳县| 互助| 三门峡市| 宜宾市| 紫金县| 桓台县| 莱西市| 兴国县| 新沂市| 平果县| 海伦市| 类乌齐县| 德钦县| 浠水县| 朝阳县| 陕西省| 如东县|