弹性盒子布局 Flexbox Layout

在这里插入图片描述

在这里插入图片描述
可以嵌套下去

在这里插入图片描述
1.display 属性
默认行排列

<style>.flex-item{
height: 20px;width: 10px;background-color: #f1f1f1;margin: 10px;}</style>
</head>
<body>
<div class="flex-container"><div class="flex-item">1</div><div class="flex-item">2</div><div class="flex-item">3</div>

此时是 列拍
在这里插入图片描述

<style>.flex-item{
height: 20px;width: 10px;background-color: #f1f1f1;margin: 10px;}.flex-container{display:flex;}  </style>

在这里插入图片描述

flex-direction属性——行布局 row
在这里插入图片描述
列布局:column
在这里插入图片描述

flex-wrap 属性 折叠在这里插入图片描述

flex-flow属性
包括 flex-direction 和flex-wrap

flex-flow: row wrap
行排列 折叠
在这里插入图片描述

justify-content属性 元素在主轴上的对齐方式在这里插入图片描述
左对齐 居中对齐 右对齐

在这里插入图片描述

两端对齐 拉手对齐

align-items属性 元素在辅轴上的对齐方式
在这里插入图片描述
上端对齐 居中对齐 底部对齐

align-items: stretch
注意:去掉元素高度

<style>.flex-container {display: flex; /* 转成flex格式*/justify-content: space-between; /*元素在主轴上的对齐 两端对齐 */flex-direction:row; /*行排列*/align-items:stretch; /*如果项目未设置高度或设为auto,将占满整个容器的高度。 */width:500px;height:200px;border:1px dashed;/* 虚线*/}.flex-item {width:100px;border:1px solid;font-size:20px}</style>
</head>
<body>
<div class="flex-container"><div class="flex-item">1</div><div class="flex-item">2</div><div class="flex-item">3</div>
</div>

在这里插入图片描述

 <style>#flexbox{display:flex;justify-content:center;align-items:center;border:1px solid ;
flex-direction:row; /*行排列*/width:200px;height:200px;}#flexitem{width:100px;
height:100px;border:1px solid red;background-color:red;}

flex-grow属性 元素被拉大的比例,按比例分配容器剩余空间 (1)默认值为0: 元素不占用剩余空间
(2)取值为n: 元素占据剩余空间若干份中的n 份

<style>.flex-container {display: flex; /* 转成flex格式*/flex-direction:row; /*行排列*/align-items:stretch; /*如果项目未设置高度或设为auto,将占满整个容器的高度。 */}.flex-item { border:1px solid black; }div:nth-child(1) { flex-grow:1; } /* 设置第一个项目比例为1份 */div:nth-child(2) { flex-grow: 1; } /* 设置第二个项目比例为1份*/div:nth-child(3) { flex-grow: 2; } /* 设置第三个项目比例为2份 */</style>
</head>
<body>
<div class="flex-container"><div class="flex-item">1</div><div class="flex-item">2</div><div class="flex-item">3</div>
</div>
</body>

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

<head><meta charset="UTF-8"><title>Title</title><style>*{margin: 0;padding: 0;
}#container{margin:0 auto;width:500px;height:400px;}#header{display:flex;flex-direction:row;/* 行排列*/justify-content:center;/* 水平居中*/align-items:center;/* 垂直居中*/border:1px solid black;font-size:30px;color:white;background-color:purple;margin-bottom:5px;weight:500px;height:100px;}#main{margin-bottom:10px;weight:500px;}#left{display:flex;flex-direction:column;/* 垂直排列*/justify-content:center;/* 水平居中*/float:left; /* 左浮动*/width:240px;height:200px;margin-right:10px;background-color:#ccc;font-size:20px;}#right{display:flex;flex-direction:column;/* 垂直排列*/justify-content:center;/* 水平居中*/float:left; /* 左浮动*/width:240px;height:200px;background-color:#ccc;font-size:20px;}#footer{display:flex;flex-direction:column;/* 垂直排列*/justify-content:center;/* 水平居中*/
float:left; /* 左浮动*/width:490px;height:100px;margin-top:10px;background-color:#ccc;font-size:20px;}p{font-size:15px; margin-top:10px; }</style>
</head>
<body>
<div id="container"><div id="header">web前端开发</div><div id="main"><div id="left">HTML<p>超文本标记语言,用于构建网页结构,定义网页包括的内容.</p></div><div id="right">CSS <p>层叠样式表,用于构建网页布局,外观,美化页面</p></div></div><div id="footer">JavaScript <p>JavaScripe,脚本语言,用于构建网页行为,与用户进行交互,使用户获得更好的体验</p></div>
</div>
</body>

这是用flex布局写得 更简单点

在这里插入图片描述

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title><style>* {margin: 0;padding: 0;}/* 整体容器样式 */#container {margin: 0 auto;width: 500px;height: 400px;display: flex;flex-direction: column;/*垂直方向为列布局*/align-items: center;/*  在主轴方向(垂直方向)上居中对齐容器内部元素 */}/* 顶部标题样式 */#header {width: 100%;height: 100px;display: flex;justify-content: center;align-items: center;  /* 垂直居中对齐*/border: 1px solid black;font-size: 30px;color: white;background-color: purple;margin-bottom: 5px;}/* 主体内容区样式 */#main {display: flex;justify-content: space-between; /*两端对齐*/width: 100%;margin-bottom: 10px;}/* 左侧内容块样式 */#left {flex: 1; /*flex-grow, flex-shrink, 和 flex-basis*/display: flex;flex-direction: column;justify-content: center;width: 240px;height: 200px;margin-right: 10px;background-color: #ccc;font-size: 20px;}/* 右侧内容块样式 */#right {flex: 1;display: flex;flex-direction: column;justify-content: center;width: 240px;height: 200px;background-color: #ccc;font-size: 20px;}/* 底部内容样式 */#footer {width: 100%;display: flex;flex-direction: column;justify-content: center;margin-top: 10px;background-color: #ccc;font-size: 20px;height: 100px;}p {font-size: 15px;margin-top: 10px;}</style>
</head>
<body>
<div id="container"><!-- 顶部标题 --><div id="header">web前端开发</div><!-- 主体内容区 --><div id="main"><!-- 左侧内容块 --><div id="left">HTML<p>超文本标记语言,用于构建网页结构,定义网页包括的内容.</p></div><!-- 右侧内容块 --><div id="right">CSS <p>层叠样式表,用于构建网页布局,外观,美化页面</p></div></div><!-- 底部内容 --><div id="footer">JavaScript <p>JavaScripe,脚本语言,用于构建网页行为,与用户进行交互,使用户获得更好的体验</p></div>
</div>
</body>
</html>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/738489.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

功能测试转自动化测试好不好转型?

手工测试做了好多年&#xff0c;点点点成了每天必须做的事情。但是随着自动化测试趋势的日渐明显&#xff0c;以及受到薪资、技能的双重考验&#xff0c;掌握自动化测试成为了必备技能。 手工转自动化测试&#xff0c;不是一蹴而就的。“预先善其事&#xff0c;必先利其器”&a…

C++:2024/3/11

作业1&#xff1a;编程 要求&#xff1a;提示并输入一个字符串&#xff0c;统计该字符中大写、小写字母个数、数字个数、空格个数以及其他字符个数 代码&#xff1a; #include <iostream>using namespace std;int main() {string str;cout << "请输入一个字…

linux查看文件内容cat,less,vi,vim

学习记录 目录 catlessvi vim cat 输出 FILE 文件的全部内容 $ cat [OPTION] FILE示例 输出 file.txt 的全部内容 $ cat file.txt查看 file1.txt 与 file2.txt 连接后的内容 $ cat file1.txt file2.txt为什么名字叫 cat&#xff1f; 当然和猫咪没有关系。 cat 这里是 co…

一款功率电子开关TP6062

一、基本概述 The TP606X is a low voltage,single P-MOSFET high-side power switch, optimized for self-powered and bus-powered Universal Serial Bus (USB) applications. This switch operates with inputs ranging from 2.4V to 5.5V, making it ideal for both 3V a…

封装方法3-2

八大数据类型一次只能代表一个&#xff0c;所以不能作为返回值&#xff0c; 数组可以做为返回值&#xff0c;把excel的内容2行11列当作数组&#xff0c;存在二维数据里 处理ecxel-22个单元值的返回结果写什么&#xff1f; 1、认识二维数组是什么&#xff1f; 数 组&#xff…

Ping工作原理

文章目录 目的ping网络协议 OSIICMP什么是ICMP作用功能报文类型查询报文类型差错报文类型ICMP 在 IPv4 和 IPv6 的封装ICMP 在 IPv4 协议中的封装ICMP 在 IPv6 协议中的封装ICMP 头部日常ping 排除步骤ping 查询报文使用code扩展目的 本文主要是梳理ping的工作原理- 揭开 ICMP…

C++初学

1>思维导图 2>试编程 提示并输入一个字符串&#xff0c;统计该字符中大写、小写字母个数、数字个数、空格个数以及其他字符个数要求使用C风格字符串完成 #include <iostream> #include<string.h> using namespace std;int main() {string str;cout <<…

Hive-源码分析一条hql的执行过程

一、源码下载 下面是hive官方源码下载地址&#xff0c;我下载的是hive-3.1.3&#xff0c;那就一起来看下吧 https://dlcdn.apache.org/hive/hive-3.1.3/apache-hive-3.1.3-src.tar.gz 二、上下文 <Hive-源码带你看hive命令背后都做了什么>博客中已经讲到了hive命令执行…

网络工程师笔记11

OSPF协议 priority越大越优先&#xff0c;缺省值是1&#xff0c;范围是0-255 routerID越大越优先&#xff0c;先比较优先值&#xff0c;后比较RouterID 非骨干区域必须要跟骨干区域相连&#xff0c;非骨干区域不能直接通信&#xff0c;必须经过骨干区域 OSPF配置 配置routerID划…

20240308-使用VS2022编译VLD-v2.5.4内存泄漏工具

20240308-使用VS2022编译VLD-v2.5.4内存泄漏工具 一、软件环境 Win10 x64 22h2 JuneVS2022 v17.9.0GIT v2.29.2标签&#xff1a;win10 22h2 vs2022分栏&#xff1a;C 二、硬件环境 Win10 x64的PC台式机 三、获取源码 方法一 git clone https://gitee.com/gdnh22/vld254.…

解决 Webpack 中 ERROR in main Module not found: Error: Can‘t resolve ‘./src‘ 问题

出自 BV1MN411y7pw&#xff0c; P98 黑马AJAX-Node.js-Webpack教学视频中webpack部分&#xff0c;打包的时候出错 ERROR in main Module not found: Error: Cant resolve ./src in V:\Web\mycode\webpack\01_webpack_use resolve ./src in V:\Web\mycode\webpack\01_webpack_us…

数据结构——二叉树的遍历【前序、中序、后序】

&#x1f49e;&#x1f49e; 前言 hello hello~ &#xff0c;这里是大耳朵土土垚~&#x1f496;&#x1f496; &#xff0c;欢迎大家点赞&#x1f973;&#x1f973;关注&#x1f4a5;&#x1f4a5;收藏&#x1f339;&#x1f339;&#x1f339; &#x1f4a5;个人主页&#x…

单链表详解(如何实现单链表)

文章目录 前言 一、单链表是什么&#xff1f;二、单链表的实现总结 顺序表的缺点 1.中间/头部的插入删除&#xff0c;时间复杂度为O (N) 2.realloc 扩容&#xff08;特别是异地扩&#xff0c;需要申请新空间&#xff0c;拷贝数据&#xff0c;释放旧空间&#xff09;会有不小的…

多场成像,快速提高机器视觉检测能力--51camera

多阵列CMOS传感器与芯片级涂层二向色滤光片相结合&#xff0c;可在单次扫描中同时捕获明场、暗场和背光图像。 多场成像是一种新的成像技术&#xff0c;它可以在不同的光照条件下同时捕获多幅图像。再加上时间延迟积分(TDI)&#xff0c;这种新兴的成像技术可以克服许多限制的传…

文章解读与仿真程序复现思路——电网技术EI\CSCD\北大核心《计及台区资源聚合功率的中低压配电系统低碳优化调度方法》

本专栏栏目提供文章与程序复现思路&#xff0c;具体已有的论文与论文源程序可翻阅本博主免费的专栏栏目《论文与完整程序》 论文与完整源程序_电网论文源程序的博客-CSDN博客https://blog.csdn.net/liang674027206/category_12531414.html 电网论文源程序-CSDN博客电网论文源…

java-数据结构—树

目录 树的组成 节点 度 根节点 其他组成部分 二叉树 普通二叉树 二叉查找树 二叉树的遍历 前序遍历 中序遍历 后序遍历 层序遍历 总结 平衡二叉树 平衡二叉树的旋转机制 左旋 右旋 需要旋转的四种情况 左左 左右 右右 右左 总结 红黑树 树的组成 节点…

【图(2)】:图的广度优先遍历和深度优先遍历

目录 图的遍历 一、图的广度优先遍历&#xff08;bfs&#xff09; 二、图的深度优先遍历 图的遍历 给定一个图G和其中任意一个顶点v0&#xff0c;从v0出发&#xff0c;沿着图中各边访问图中的所有顶点&#xff0c;且每个顶点仅被遍历一次。"遍历"即对结点进行某种…

C++初阶:模板

目录 一.泛型编程 二.函数模板 2.1.函数模板的概念 2.2.函数模板的格式 2.3.函数模板的原理 2.4.函数模板的实例化 隐式实例化 显示实例化 2.5.模板参数的匹配原则 三.类模板 3.1.类模板的格式 3.2.类模板的实例化 3.3.在类模板外部定义成员函数 四.非类型模板参…

【保姆级】Protobuf详解及入门指南

目录 Protobuf概述 什么是Protobuf 为什么要使用Protobuf Protobuf实战 环境配置 创建文件 解析/封装数据 附录 AQin.proto 完整代码 Protobuf概述 什么是Protobuf Protobuf&#xff08;Protocol Buffers&#xff09;协议&#x1f609; Protobuf 是一种由 Google 开…

CrossOver2024实现Mac/Linux上快速运行Win软件和游戏

作为软件产品专家&#xff0c;我对各类软件都有较为深入的了解&#xff0c;下面介绍CrossOver2024这款软件的功能特点。 CrossOver2024是一款功能强大的类虚拟机软件&#xff0c;它的设计目标是在Mac和Linux系统上实现Windows软件和游戏的快速运行。这款软件不仅具有出色的兼容…