在 Bootstrap 4 中拉伸彈性專案


要在 Bootstrap 4 中拉伸彈性專案,請使用 .align-self-stretch 類。     

此處,第二個彈性專案使用 Bootstrap 中的 align-self-stretch 類進行拉伸 −

<div class="d-flex bg-primary" style="height:200px">
  <div class="p-2 border">A-one</div>
  <div class="p-2 border align-self-stretch ">B-one</div>
  <div class="p-2 border">C-one</div>
  <div class="p-2 border">D-one</div>
</div>

你可以嘗試執行以下程式碼來拉伸彈性專案 −

示例

真機演示

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Bootstrap Example</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
   </head>
<body>

<div class="container mt-3">
  <h1>Align Specific Flex Item and Stretch</h1>
    <div class="d-flex bg-primary" style="height:200px">
    <div class="p-2 border">A-one</div>
      <div class="p-2 border">B-one</div>
      <div class="p-2 border align-self-stretch">C-one</div>
      <div class="p-2 border">D-one</div>
    </div>
</div>

</body>
</html>

更新於: 17-6 月-2020

436 次瀏覽

開啟你的 職業生涯

完成課程並獲得認證

開始
廣告
© . All rights reserved.