當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Style alignItems屬性用法及代碼示例


HTML DOM 樣式 alignItems 屬性用於提及存在於靈活容器內的項目默認對齊方式。

用法

以下是語法 -

設置 alignItems 屬性 -

object.style.alignContent = " stretch|center|flex-start|flex-end|baseline|initial|inherit"

以下可以是值 -

描述
Stretch它是默認值,用於拉伸項目以適合容器。
Center這用於將項目定位在容器的中心。
flex-start將項目定位在容器的開頭。
flex-end將項目放置在容器的末端。
baseline將項目定位在容器基線處
initial用於將此屬性設置為初始值。
Inherit繼承父屬性值。

示例

讓我們看一下 Style alignItems 屬性的示例 -

<!DOCTYPE html>
<html>
<head>
<style>
   #container {
      width:180px;
      height:220px;
      padding:10px;
      border:1px solid #333;
      display:flex;
      align-items:flex-end;
      flex-flow:row wrap;
   }
   .ele {
      width:60px;
      height:60px;
      background-color:skyblue;
   }
   .ele:nth-child(2n) {
      background-color:orange;
   }
</style>
<script>
   function changeAlign(){
      document.getElementById("container").style.alignItems="baseline";
   }
</script>
</head>
<body>
<h2>Demo Heading</h2>
<div id="container">
<div class="ele"></div>
<div class="ele"></div>
<div class="ele"></div>
</div>
<p>Change the align items property of the above div by clicking the button</p>
<button onclick="changeAlign()">CHANGE</button>
</body>
</html>

輸出

這將產生以下輸出 -

單擊更改按鈕 -

相關用法


注:本文由純淨天空篩選整理自AmitDiwan大神的英文原創作品 HTML DOM Style alignItems property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。