1. 程式人生 > 程式設計 >詳解Bootstrap網格垂直和水平對齊方式

詳解Bootstrap網格垂直和水平對齊方式

目錄
  • 1、Bootstrap網格佈局
  • 2、垂直對齊
    • 2.1 row標籤中設定垂直對齊
    • 2.2 col標籤中設定垂直對齊
  • 3、水平對齊
    • 3.1 row標籤中設定垂直對齊

1、Bootstrap網格佈局

上一節我們介紹了Bootstrap中的網格,網格在佈局中是一個重點和難點,佈局是網頁設計的起點和基礎,一定要花功夫弄懂,最起碼把我寫的教程介紹的內容弄懂,因為我寫的都是最常用的和最基礎的。當然對於一個有一定基礎的網頁設計師,這些內容相信一看就懂,今天我們進一步學習網格佈局。

本節內容涉及到通用類的彈性盒子(Flex)中的部分功能。

2、垂直對齊

2.1 row標籤中設定垂直對齊

通過在row標籤中 新增align-items-start、align-items-center、align-items-end可以更改行在容器中的垂直對齊方式,以上三個標籤分別為頂部對齊、居中對齊、底部對齊。以下是一段演示程式碼和效果圖,程式碼中程式碼設定背景色和間距,方便檢視效果。

<!doctype html>
<html lang="zh-CN">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="wmlWtgzjXbMidth=device-width,initial-scale=1">
    <meta name="keywords" content="">
    <meta name="description" content="">
    <link href="bootstrap5/bootstrap.min.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="stylesheet">
    <style>
      .row{background-color: rgba(0,255,0.178);height: 260px;margin:30px;}
      .col{background-color: rgba(101,101,161,0.842);height: 80px;padding: 30px;margin: 10px;}
    </style>
    <title>垂直對齊演示</title>
  </head>
  <body>
        <div class="container">

          <div class="row align-items-start">
            <div class="col"> </div>
            <div class="col"></div>
            <div class="col"></div>
          </div>

          <div class="row align-items-center">
            <div class="col"> </div>
            <div class="col"></div>
            <div class="col"></div>
          </div>

          <div class="r
ow align-items-end"> <div class="col"> </div> <div class="col"></div> <div class="col"></div> </div> </div> <script src="bootstrap5/bootstrap.bundle.min." ></script> </body> </html>

詳解Bootstrap網格垂直和水平對齊方式

2.2 col標籤中設定垂直對齊

通過在col標籤中 新增align-self-start、align-self-center、align-self-end可以更改列在行中的垂直對齊方式,以上三個標籤分別為頂部對齊、居中對齊、底部對齊。以下是一段演示程式碼和效果圖,程式碼中css程式碼設定背景色和間距,方便檢視效果。

<!doctype html>
<html lang="zh-CN">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,0.842);height: 80px;padding: 30px;margin: 10px;}
    </style>
    <title>垂直對齊演示</title>
  </head>
  <body>
        <div class="container">

          <div class="row align-items-start">
            <div class="col  align-self-start"> </div>
            <div class="col align-self-center"></div>
            <div class="col align-self-end"></div>
          </div>

        </div>
   
     <script src="bootstrap5/bootstrap.bundle.min.js" ></script>
  </body>
</html>

詳解Bootstrap網格垂直和水平對齊方式

3、水平對齊

3.1 row標籤中設定垂直對齊

通過在row標籤中 新增justify-content-start、justify-content-center、justify-content-end、justify-content-around、justify-content-between、justify-content-evenly可以更改列在行中的水平對齊方式。以下是一段演示程式碼和效果圖,程式碼中css程式碼設定背景色和間距,方便檢視效果。

<!doctype html>
<html lang="zh-CN">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <meta name="keywords" content="">
    <meta name="description" content="">
    <link href="bhttp://www.cppcns.comootstrap5/bootstrap.min.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="stylesheet">
    <style>
     .row{background-color: rgba(0,0.178);height: 120px;margin:10px;}
      .col-4{background-color: rgba(101,0.842);height: 30px;padding: 10px;margin: 10px;}
    </style>
    <title>垂直對齊演示</title>
  </head>
  <body>
        <div class="container">

          <div class="row justify-content-start">
            <div class="col-4"> </div>
            <div class="col-4"></div>
            <div class="col-4"></div>
          </div>

          <div class="row justify-content-center">
            <div class="col-4"> </div>
            <div class="col-4"></div>
            <div class="col-4"></div>
          </div>

          <div class="row justify-content-end">
            <div class="col-4"> </div>
## <div class="col-4"></div>
            <div class="col-4"></div>http://www.cppcns.com;
          </div>

          <div class="row justify-content-around">
            <div class="col-4"> </div>
            <div class="col-4"></div>
            <div class="col-4"></div>
          </div>

          <div class="row justify-content-between">
            <div class="col-4"> </div>
            <div class="col-4"></div>
            <div class="col-4"></div>
          </div>

          <div class="row justify-content-evenly">
            <div class="col-4"> </div>
            <div class="col-4"></div>
            <div class="col-4"></div>
          </div>
        </div>

到此這篇關於詳解Bootstrap網格垂直和水平對齊方式的文章就介紹到這了,更多相關Bootstrap網格垂直和水平對齊方式內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!