Boostrap(未完待续)(六十三)

2024-01-14 01:10

本文主要是介绍Boostrap(未完待续)(六十三),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Boostrap是最受欢迎的HTML、CSS和JS框架,用于开发响应式布局,移动端设备优先的WEB项目。基于jquery。适用于小型项目,因为boostrap很多样式都预设好了,所以大型项目还是尽量自己手写的好。
Bootstrap相当于就是它有许多现成的样式可以引用,你就需要添加个类名就行。不过理解原理,自己能够手动写一个更好了。
特色:1.响应式布局:我们不需要自己去写madia queries,系统已经帮我们写好了。只需要调用给我们的样式就行

2.基于flex的栅格系统

3.丰富的组件和工具方法

4.常见交互使用

官网:https://getbootstrap.com/
章先学习boostrap的HTML、CSS部分

下载源码->解压->dist->css

boostrap.css:包含了bootstrap.grid.css(网格布局,栅格系统运用flex)和boostrap.reboot.css(重置默认样式css)、以及utilities.css(sass修改和扩展)的。所以在css当中只需要引入boostrap.css文件即可
在这里插入图片描述
在这里插入图片描述
container:(布局)

包含:

container(版心)

container-fluid(通栏)
源码:

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {width: 100%;padding-right: var(--bs-gutter-x, 0.75rem);padding-left: var(--bs-gutter-x, 0.75rem);margin-right: auto;margin-left: auto;
}@media (min-width: 576px) {.container-sm, .container {max-width: 540px;}
}
@media (min-width: 768px) {.container-md, .container-sm, .container {max-width: 720px;}
}
@media (min-width: 992px) {.container-lg, .container-md, .container-sm, .container {max-width: 960px;}
}
@media (min-width: 1200px) {.container-xl, .container-lg, .container-md, .container-sm, .container {max-width: 1140px;}
}
@media (min-width: 1400px) {.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {max-width: 1320px;}
}

在这里插入图片描述
responsive breakpoints :响应式回调节点

@media (min-width: 576px) {...}
@media (min-width: 768px) {...}
@media (min-width: 992px) {...}
@media (min-width: 1200px) {...}
@media (min-width: 1400px) {...}

grid-system(网格系统)
grid options:网格配置
在这里插入图片描述
responsive classes:响应式classes
gutters:间距
alignment:对齐方式
reordering:排序
offsetting:中间空的栅格
示例:
在这里插入图片描述
部分源码:

.row {--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;display: flex;flex-wrap: wrap;   /* 换行*/margin-top: calc(var(--bs-gutter-y) * -1);margin-right: calc(var(--bs-gutter-x) / -2);margin-left: calc(var(--bs-gutter-x) / -2);
}
.row > * {flex-shrink: 0;   /*防止其他元素增大,造成元素被压缩*/width: 100%;max-width: 100%;padding-right: calc(var(--bs-gutter-x) / 2);padding-left: calc(var(--bs-gutter-x) / 2);margin-top: var(--bs-gutter-y);
}.col {flex: 1 0 0%;   /* 每列平均占据剩余空间的*/
}

不难看出,boostrap的栅格化系统是利用flex布局完成的

折行:源码

.w-100 {   /* 换行*/width: 100% !important;
}

根据跨列数设置

<div class="container"><div class="row"><div class="col">col</div><div class="col">col</div><div class="col">col</div><div class="col">col</div></div><div class="row"><div class="col-8">col-8</div>  /*整个容器占8列*/<div class="col-4">col-4</div>  </div>
</div>

在这里插入图片描述
如果col-x、col-y x已经大于12,那么y会换行

col-12:width:100%。

根据内容撑开:源码

.col-auto {  <!--  根据内容撑开-->flex: 0 0 auto;  //不放大,不会因为空间不足元素被压缩width: auto;
}

html代码:

 <div class="row"><div class="col-auto">123456</div><div class="col-auto">12345</div><div class="col-auto">123</div></div>

在这里插入图片描述
组合布局:

<div class="row"><div class="col-1 col-sm-2 col-md-3 col-xxl-4">123456</div> <!-->=576px 一列跨2列 在>=760px 一列跨3列 在>=1400px 一列跨4--><div class="col-1 col-sm-2 col-md-3 col-xxl-4">12345</div><div class="col-1 col-sm-2 col-md-3 col-xxl-4">123</div>
</div>

对齐方式:可以参照grid和flex的属性

 <div class="row justify-content-around"><div class="col-1 col-sm-2 col-md-3 col-xxl-4" >123456</div>  <!-->=576px 一列跨2列 在>=760px 一列跨3列 在>=1400px 一列跨4--><div class="col-1 col-sm-2 col-md-3 col-xxl-4">12345</div><div class="col-1 col-sm-2 col-md-3 col-xxl-4">123</div>
</div>

在这里插入图片描述
偏移:
源码:

.offset-4 {margin-left: 33.3333333333%;
}

html代码:

<div class="row justify-content-around"><div class="col-4" >123456</div> <!-- <div class="col-4">12345</div> --><div class="col-4 offset-4">123</div></div></div>

在这里插入图片描述
自适应布局:

源码:

左自适应:

.ms-auto {margin-left: auto !important;
}

右自适应:

.

me-auto {margin-right: auto !important;
}

上自适应:

.mt-auto {margin-top: auto !important;
}

下自适应:

.mb-auto {margin-bottom: auto !important;
}

左右自适应:

.mx-auto {margin-right: auto !important;margin-left: auto !important;
}

左右margin5px

.mx-5 {margin-right: 3rem !important;margin-left: 3rem !important;
}

padding也一样
content(关于内容部分)

重置默认样式

样式预设:不需要在css再次设置,引入类名即可
字体排版:
源码:

.text-start {text-align: left !important;
}.text-end {text-align: right !important;
}.text-center {text-align: center !important;
}

图片设定:
圆角:
源码

.rounded {border-radius: 0.25rem !important;
}

表格:

Form(表单)

Components(组件)

utilites:(工具)

示例:
个人博客管理
在这里插入图片描述
在这里插入图片描述

<!DOCTYPE html>
<html><head><meta charset="utf-8"><title></title><link rel="stylesheet" type="text/css" href="css/bootstrap.css"/><link rel="stylesheet" type="text/css" href="iconfont/font/iconfont.css"/><meta name="viewport" content="width=device-width"/><style type="text/css">.icon-sousuo{font-size: 30px;margin-right: 5px;position: relative;top: 5px;}.box200-250{background-color: gray;width: 200px;height: 250px;}h1,h2{font-family: "Playfair Display", Georgia, "Times New Roman", serif;}h2{font-weight: 500;}.teshu p{font-size: 1rem;}</style></head><body><div class="container"><!-- <header class="row py-2"><div class="col  align-items-center "><a href="#">Subscribe</a></div><div class="col text-center"><h2><a href="">Large</a></h2></div><div class="col text-end"><a href="#"><i class="iconfont icon-sousuo"></i></a><a href="" >Signup</a></div></header> --><header class="row py-2 justify-content-between align-items-center border-bottom"><div class="col-auto "><a href="#" class=" text-muted text-decoration-none">Subscribe</a></div><div class="col-auto  "><h2><a href=""  class="text-dark text-decoration-none">Large</a></h2></div><div class="col-auto"><a href="#" class=" text-muted text-decoration-none "><i class="iconfont icon-sousuo"></i></a><a class="  text-decoration-none bth btn-outline-secondary btn-md border rounded">Sign  up</a></div></header><nav class="d-flex justify-content-between py-3 overflow-auto"><a href="" class='text-muted  text-decoration-none  py-2'>World</a><a href=""class='text-muted text-decoration-none  py-2'>U.S.</a><a href=""class='text-muted text-decoration-none  py-2'>Technology</a><a href=""class='text-muted text-decoration-none  py-2'>Design</a><a href=""class='text-muted text-decoration-none  py-2'>Business</a><a href=""class='text-muted text-decoration-none  py-2'>Politics</a><a href=""class='text-muted text-decoration-none  py-2'>Opinion</a><a href=""class='text-muted text-decoration-none  py-2'>Science</a><a href=""class='text-muted text-decoration-none  py-2'>Health</a><a href=""class='text-muted text-decoration-none  py-2'>Style</a></nav><div class="p-4 p-md-5 mb-4 text-white rounded bg-dark"><div class="col-md-6 px-0"><h1 class="display-4 fst-italic" style="font-family:'Playfair Display', Georgia, 'Times New Roman', serif;">Title of a longer featured blog post</h1><p class="lead my-3">Multiple lines of text that form the lede, informing new readers quickly and efficiently about what’s most interesting in this post’s contents.</p><p class="lead mb-0"><a href="#" class="text-white fw-bold">Continue reading...</a></p></div></div><div class="row justify-content-between mb-4 " ><div class="col-md-6  mb-4 " ><div class="row border rounded mx-0 shadow"><div class="col"><div class="col p-4 d-flex flex-column position-static"><strong class="d-inline-block mb-2 text-primary">World</strong><h3 class="mb-0">Featured post</h3><div class="mb-1 text-muted">Nov 12</div><p class="card-text mb-auto">This is a wider card with supporting text below as a natural lead-in to additional content.</p><a href="#" class="stretched-link">Continue reading</a></div></div><div class="col-auto d-none d-md-block"><a href="" ><div class="box200-250"></div></a></div></div></div><div class="col-md-6 "><div class="row  border rounded mx-0 shadow" ><div class="col "><div class="col p-4 d-flex flex-column position-static"><strong class="d-inline-block mb-2 text-primary">World</strong><h3 class="mb-0">Featured post</h3><div class="mb-1 text-muted">Nov 12</div><p class="card-text mb-auto">This is a wider card with supporting text below as a natural lead-in to additional content.</p><a href="#" class="stretched-link">Continue reading</a></div></div><div class="col-auto d-none d-md-block"><a href="" ><div class="box200-250"></div></a></div></div></div></div><div class="row teshu"><div class="col-md-8 col-12 mb-4"><h2 class="fst-italic border-bottom pb-4 " style="font-family:'Playfair Display', Georgia, 'Times New Roman', serif;">From the Firehose</h2><div class="border-bottom"><h2 >Sample blog post</h2><p class="text-muted">January 1, 2014 by <a href="">Mark</a></p><p>This blog post shows a few different types of content that’s supported and styled with Bootstrap. Basic typography, images, and code are all supported.</p></div><div><p>Yeah, she dances to her own beat. Oh, no. You could've been the greatest. 'Cause, baby, you're a firework. Maybe a reason why all the doors are closed. Open up your heart and just let it begin. So très chic, yeah, she's a classic.</p><p>Bikinis, zucchinis, Martinis, no weenies. I know there will be sacrifice but that's the price. This is how we do it. I'm not sticking around to watch you go down. You think you're so rock and roll, but you're really just a joke. I know one spark will shock the world, yeah yeah. Can't replace you with a million rings.</p><p>Trying to connect the dots, don't know what to tell my boss. Before you met me I was alright but things were kinda heavy. You just gotta ignite the light and let it shine. Glitter all over the room pink flamingos in the pool.</p></div><div id=""><h2>Heading</h2><p>Suiting up for my crowning battle. If you only knew what the future holds. Bring the beat back. Peach-pink lips, yeah, everybody stares.</p></div><div ><h2>Sub-heading</h2><p>You give a hundred reasons why, and you say you're really gonna try. Straight stuntin' yeah we do it like that. Calling out my name. ‘Cause I, I’m capable of anything.</p><p >Example code block</p><p>Before you met me I was alright but things were kinda heavy. You just gotta ignite the light and let it shine.</p></div><div id=""><h2>Sub-heading</h2><p>You got the finest architecture. Passport stamps, she's cosmopolitan. Fine, fresh, fierce, we got it on lock. Never planned that one day I'd be losing you. She eats your heart out.</p><ul><li>Got a motel and built a fort out of sheets.</li><li>Your kiss is cosmic, every move is magic.</li><li>Suiting up for my crowning battle.</li></ul><p>Takes you miles high, so high, 'cause she’s got that one international smile.</p><ol><li>Scared to rock the boat and make a mess.<li>I could have rewrite your addiction.<li>I know you get me so I let my walls come down.</ol><p>After a hurricane comes a rainbow.</p></div><div><h2>Another blog post</h2><p class="text-muted">December 23, 2013 by <a href="">Jacob</a></p><p>I am ready for the road less traveled. Already brushing off the dust. Yeah, you're lucky if you're on her plane. I used to bite my tongue and hold my breath. Uh, She’s a beast. I call her Karma (come back). Black ray-bans, you know she's with the band. I can't sleep let's run away and don't ever look back, don't ever look back.</p><p>Growing fast into a <b>bolt of lightning</b> . Be careful Try not to lead her on</p><p>I'm intrigued, for a peek, heard it's fascinating. Oh oh! Wanna be a victim ready for abduction. She's got that international smile, oh yeah, she's got that one international smile. Do you ever feel, feel so paper thin. I’m gon’ put her in a coma. Sun-kissed skin so hot we'll melt your popsicle.</p><p>This is transcendental, on another level, boy, you're my lucky star.</p></div><div><h2>New feature</h2><p class="text-muted">December 23, 2013 by <a href="">JCharis</a></p><p>From Tokyo to Mexico, to Rio. Yeah, you take me to utopia. I'm walking on air. We'd make out in your Mustang to Radiohead. I mean the ones, I mean like she's the one. Sun-kissed skin so hot we'll melt your popsicle. Slow cooking pancakes for my boy, still up, still fresh as a Daisy.</p><ul><li>I hope you got a healthy appetite.</li><li>You're never gonna be unsatisfied.</li><li>Got a motel and built a fort out of sheets.</li></ul><p>Don't need apologies. Boy, you're an alien your touch so foreign, it's supernatural, extraterrestrial. Talk about our future like we had a clue. I can feel a phoenix inside of me.</p></div><div ><button type="button" class="btn btn-outline-primary " style="border-radius: 20px;">Older</button><button type="button" class="btn btn-outline-secondary" style="border-radius: 20px;">Newer</button></div></div><div class="col-md-4 col-12 "><div class="p-4 " style="background-color: gainsboro;"><h2  class="fst-italic"  style="font-family:'Playfair Display', Georgia, 'Times New Roman', serif;">About</h2><p>Saw you downtown singing the Blues. Watch you circle the drain. Why don't you let me stop by? Heavy is the head that wears the crown. Yes, we make angels cry, raining down on earth from up above.</p></div><div class="my-5"><h2 class="fst-italic" style="font-family:'Playfair Display', Georgia, 'Times New Roman', serif;">Archives</h2><ul class="list-unstyled" ><li><a href="">March 2014</a></li><li><a href="">February 2014</a></li><li><a href="">January 2014</a></li><li><a href="">December 2013</a></li><li><a href="">November 2013</a></li><li><a href="">October 2013</a></li><li><a href="">September 2013</a></li><li><a href="">August 2013</a></li><li><a href="">July 2013</a></li><li><a href="">June 2013</a></li><li><a href="">April 2013</a></li></ul></div><div><h2 class="fst-italic" style="font-family:'Playfair Display', Georgia, 'Times New Roman', serif;">Elsewhere</h2><ul class="list-unstyled"><li><a href="">Github</a></li><li><a href="">Twitter</a></li><li><a href="">Facebook</a></li></ul></div></div></div></div><div class="container_fluid p-5 " style="background-color:rgba(100,100,100,0.2);font-size: 12px;"><p class="text-center ">Blog template built for <a href="">Bootstrap</a> by <a href="">@mdo.</a> </p><p class="text-center"><a href="">Back to top</a></p></div></body>
</html>

这篇关于Boostrap(未完待续)(六十三)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/603430

相关文章

自然语言处理系列六十三》神经网络算法》LSTM长短期记忆神经网络算法

注:此文章内容均节选自充电了么创始人,CEO兼CTO陈敬雷老师的新书《自然语言处理原理与实战》(人工智能科学与技术丛书)【陈敬雷编著】【清华大学出版社】 文章目录 自然语言处理系列六十三神经网络算法》LSTM长短期记忆神经网络算法Seq2Seq端到端神经网络算法 总结 自然语言处理系列六十三 神经网络算法》LSTM长短期记忆神经网络算法 长短期记忆网络(LSTM,Long S

C++入门(03)萌新问题多(一)(未完待续)

文章目录 1. 一闪而过使用system("pause")使用cin.get() 1. 一闪而过 .exe 在用户计算机上运行后“一闪而过”,是因为控制台程序没有专门的用户图形界面,程序执行完所有代码后默认完成任务自动关闭 使用system(“pause”) 在程序的结尾处加入 system(“pause”),程序在执行完毕后等待用户按任意键继续。这是最简单的方法。 使

PaddleOCR 实现车牌识别----利用PaddleOCR训练车牌识别数据_未完待续

1.下载CCPD数据集 去网址  https://aistudio.baidu.com/aistudio/datasetdetail/17968  下载CCPD数据集并解压。 2.       参考文献: PaddleOCR训练自己的数据集    https://blog.csdn.net/u013171226/article/details/115179480 PaddleOCR

Jenkins+Docker | K8S虚拟化实现网站自动部署 简单流程 未完待续,,

目录 大纲 1.Jenkins 的设置与 Docker、Kubernetes 集成指南 1. 创建新的Pipeline项目或Freestyle项目 1.1 创建Pipeline项目 1.2 创建Freestyle项目 2. 配置源代码管理 2.1 配置Git作为源代码管理工具 3. 配置构建触发器 4. 配置构建步骤 4.1 对于Pipeline项目 4.2 对于Freest

python为在线漫画网站自制非官方API(未完待续)

接下来将记录我一步一步写一个非官方API的过程,因为一些条件的约束,最后的成品可能很粗暴简陋 现在介绍要准备的所有工具: 系统:ubuntu 14.04 语言:python 2.7 需要自行安装的库:flask,BeautifulSoup4,requests,selenium,pinyin,phantomjs-1.9.8 服务器:Sina App Engine 因为成本原因我选择了Si

(未完待续)概率论之参数估计

两个独立正态总体的均值比较 情况一: 例子 情况二: 情况三: 两个非正态分布总体的均值比较 例子: 两个总体比例比较 例子: 两个独立正态总体的方差比较 估计量与估计值 对于已知类型的分布,估计分布函数参数是关键 无偏性 有效性 相合性 矩阵计法 均匀分布的矩估计量 正态分布的矩估计量

boostrap中me-5什么意思

me-5是一个用于设置元素外边距的工具类。‌具体来说,‌me-5代表的是“margin-end”的第五个尺寸级别,‌这里的“end”是一个逻辑方向,‌它根据文档的书写模式(‌LTR或RTL)‌自动适应为“右”或“左”。‌在从左到右(‌LTR)‌的书写模式中,‌me-5等同于margin-right: s p a c e r ∗ 3 ; ,‌其中 spacer * 3;,‌其中 spacer∗3;

Ansible可视化管理之web界面集成使用探究(未完待续)

一、前言 因某集成商管理的客户资源涉及4A接入管控要求,其中密码必须3个月更新一次,随着纳管主机的数量增多,手动去修改密码变得不现实,考虑无侵入性和资源耗用,便捷性等因素,首先选用Ansible作为此需求的首要解决方案,ansible是agentless的且仅需依靠ssh就能管理目标,这减少了开销和安全漏洞,但因Ansible主要还是一个命令行工具,这种命令行操作,剧本编写不是特别直观,导致An

数据库原理与安全复习笔记(未完待续)

1 概念 产生与发展:人工管理阶段 → \to → 文件系统阶段 → \to → 数据库系统阶段。 数据库系统特点:数据的管理者(DBMS);数据结构化;数据共享性高,冗余度低,易于扩充;数据独立性高。DBMS 对数据的控制功能:数据的安全性保护;数据的完整性检查;并发控制;数据库恢复。 数据库技术研究领域:数据库管理系统软件的研发;数据库设计;数据库理论。数据模型要素 数据结构:描述数据库

Python武器库开发-武器库篇之ThinkPHP 2.x 任意代码执行漏洞(六十三)

Python武器库开发-武器库篇之ThinkPHP 2.x 任意代码执行漏洞(六十三) PHP代码审计简介 PHP代码审计是指对PHP程序进行安全审计,以发现潜在的安全漏洞和风险。PHP是一种流行的服务器端脚本语言,广泛用于开发网站和Web应用程序。由于其开源性质和易于学习的特点,许多开发人员使用PHP来构建他们的网站和应用。 然而,不可否认的是,PHP应用程序也存在着安全风险。由于PHP的