bootstrap 左右布局(详解Bootstrap网格垂直和水平对齐方式)
bootstrap 左右布局
详解Bootstrap网格垂直和水平对齐方式目录
- 1、Bootstrap网格布局
- 2、垂直对齐
- 2.1 row标签中设置垂直对齐
- 2.2 col标签中设置垂直对齐
- 3、水平对齐
- 3.1 row标签中设置垂直对齐
上一节我们介绍了Bootstrap中的网格,网格在网页布局中是一个重点和难点,布局是网页设计的起点和基础,一定要花功夫弄懂,最起码把我写的教程介绍的内容弄懂,因为我写的都是最常用的和最基础的。当然对于一个有一定基础的网页设计师,这些内容相信一看就懂,今天我们进一步学习网格布局。
本节内容涉及到通用类的弹性盒子(Flex)中的部分功能。
2.1 row标签中设置垂直对齐
通过在row标签中 添加align-items-start、align-items-center、align-items-end可以更改行在容器中的垂直对齐方式,以上三个标签分别为顶部对齐、居中对齐、底部对齐。以下是一段演示代码和效果图,代码中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="bootstrap5/bootstrap.min.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="stylesheet"> <style> .row{background-color: rgba(0, 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> <li class="container"> <li class="row align-items-start"> <li class="col"> </li> <li class="col"></li> <li class="col"></li> </li> <li class="row align-items-center"> <li class="col"> </li> <li class="col"></li> <li class="col"></li> </li> <li class="row align-items-end"> <li class="col"> </li> <li class="col"></li> <li class="col"></li> </li> </li> <script src="bootstrap5/bootstrap.bundle.min.js" ></script> </body> </html>
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, 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, 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> <li class="container"> <li class="row align-items-start"> <li class="col align-self-start"> </li> <li class="col align-self-center"></li> <li class="col align-self-end"></li> </li> </li> <script src="bootstrap5/bootstrap.bundle.min.js" ></script> </body> </html>
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="bootstrap5/bootstrap.min.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="stylesheet"> <style> .row{background-color: rgba(0, 0, 255, 0.178);height: 120px;margin:10px;} .col-4{background-color: rgba(101, 101, 161, 0.842);height: 30px;padding: 10px;margin: 10px;} </style> <title>垂直对齐演示</title> </head> <body> <li class="container"> <li class="row justify-content-start"> <li class="col-4"> </li> <li class="col-4"></li> <li class="col-4"></li> </li> <li class="row justify-content-center"> <li class="col-4"> </li> <li class="col-4"></li> <li class="col-4"></li> </li> <li class="row justify-content-end"> <li class="col-4"> </li> ## <li class="col-4"></li> <li class="col-4"></li> </li> <li class="row justify-content-around"> <li class="col-4"> </li> <li class="col-4"></li> <li class="col-4"></li> </li> <li class="row justify-content-between"> <li class="col-4"> </li> <li class="col-4"></li> <li class="col-4"></li> </li> <li class="row justify-content-evenly"> <li class="col-4"> </li> <li class="col-4"></li> <li class="col-4"></li> </li> </li>
到此这篇关于详解Bootstrap网格垂直和水平对齐方式的文章就介绍到这了,更多相关Bootstrap网格垂直和水平对齐方式内容请搜索开心学习网以前的文章或继续浏览下面的相关文章希望大家以后多多支持开心学习网!
- bootstrap怎么用虚线框(Bootstrap网页布局网格的实现)
- bootstrap是什么
- bootstrap 左右布局(详解Bootstrap网格垂直和水平对齐方式)
- 如何设置bootstrap轮播图的速度(bootstrap实现轮播图效果)
- bootstraptable使用教程(bootstrap Table的使用方法总结)
- bootstrap自适应原理(Bootstrap5的断点与容器的具体使用)
- 三分71 生死战爆发 篮网旧将丁威迪今天成奇兵,助队赢球(三分71生死战爆发)
- 《红 雄安》系列广播剧第一集 水上奇兵雁翎队(雄安系列广播剧第一集)
- 小说 小伙穿越成刘备,用现代知识指挥作战,众谋士都看呆了(小伙穿越成刘备)
- 解析葡萄牙6-1瑞士 进攻多点开花,贡萨洛-拉莫斯一战成名(解析葡萄牙6-1瑞士)
- 这支 奇兵队 腕大 有范儿还各怀绝技,毒贩杀人犯见了都要仓皇而逃(这支奇兵队腕大)
- 雄藩崛起 奇兵队与幕末长州藩军事改革(雄藩崛起奇兵队与幕末长州藩军事改革)
热门推荐
- 织梦列表页调用文章简介不显示(织梦文章系统修改专题文章列表的模板的方法)
- html5和css3最新特性(html5中使用hotcss.js实现手机端自适配的方法)
- python中统计文本中单词数的代码(Linux上使用Python统计每天的键盘输入次数)
- php小例子(PHP反射实际应用示例)
- apache的优化建议(Apache 网站速度更快)
- python如何读取文件(Python从文件中读取数据的方法讲解)
- docker 限制cpu使用率(docker CPU限制的实现)
- uniapp 全局变量(如何在uniapp项目中使用mqtt)
- pyqt第三方控件(PySide和PyQt加载ui文件的两种方法)
- 创建jsp时如何默认生成的是utf-8(js判断文件是否为utf-8编码的方法)