百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 编程网 > 正文

话说前端13-css的flex布局 css fixed布局

yuyutoo 2024-10-25 19:19 2 浏览 0 评论

分享兴趣,传播快乐,增长见闻,留下美好!

亲爱的您,这里是LearningYard学苑。

今天小编为大家带来

话说前端-13-css的flex布局

欢迎您的访问。

Share interests, spread happiness, increase knowledge, and leave a good legacy!


Dear you, this is The LearningYard Academy.


Today Xiaobian brings it to you


Welcome to your visit.


今天我们讲一讲css中比较重要的布局之一,flex布局。

通常我们给flex布局是给父元素的,通过display:flex进行设置。通常要给父元素明确的宽高。

Today, let's talk about one of the more important layouts in css, flex layout.

Usually, the layout we give to flex is for the parent element, which is set by display:flex. Usually, the parent element should be given a clear width and height.


flex布局还有一些其他的属性,也是给父元素的,通过把其存在的空白空间各种分配来达到一种布局的目的。首先伸展,即给子元素设置宽高后,剩余的空间直接通过比例来分配空间。属性为flex-grow:默认为0,如:0 1 2,就是按0:1:2分配剩余空间。同理还有flex-shrink。

The layout of flex has some other attributes, which are also given to the parent elements, and the purpose of a layout is achieved by allocating all kinds of empty spaces in it. First, after stretching, that is, setting the width and height of sub-elements, the remaining space is allocated directly by proportion. The attribute flex-grow: defaults to 0, such as 0 1 2, which means that the remaining space is allocated according to 0: 1: 2. Similarly, there is flex-shrink.

还有flex-decotion:设置主轴的排列方式,如row,从左向右,以及row-revese,就是反向,还有column,从上到下,以及column的反向column-reserve。

There is also flex-decotion: set the arrangement of spindles, such as row, from left to right, and row-revese, which is reverse, and column, from top to bottom, and the reverse column-reserve of Column.

还有justify-content:分配剩余的空间

flex-star-----元素沿着主轴起点排列(默认值)

flex-end-----元素沿着终点排列

center-------元素剧中排列

space-around----空白分布到元素两侧

space-between---空白均匀分布到元素之间

space-evenly----空白分布到元素的单侧。

And justify-content: allocate the remaining space.

Flex-star-elements are arranged along the starting point of the main axis (default value)

Flex-end-elements are arranged along the end point.

Center------- element arrangement in the play

Space-around---- white space is distributed on both sides of the element.

Space-between--- white space is evenly distributed among elements.

Space-even-white space is distributed to one side of the element.


同时还有align-content:分配辅轴空间

center----元素在中间,上下空间分布一样。

flex-start----元素在上边,空间分布在下边

flex-end---元素分布在下面,空白分布在上面

space-around----空白分布在两边。

space-between---空白分布在元素的中间

At the same time, align-content: allocate secondary axis space.

Center---- the elements are in the middle, and the upper and lower spaces are equally distributed.

Flex-start---- the elements are on the top and the space is distributed on the bottom.

Flex-end--- elements are distributed below, and blanks are distributed above.

Space-around---- blank spaces are distributed on both sides.

Space-between--- white space is distributed in the middle of elements.


以上的元素都是通过父元素来影响子元素,但有些固定,后面我们会讲一讲更加实用更加强大的grid布局。

All the above elements affect the children through the parent elements, but some of them are fixed. Later, we will talk about the more practical and powerful grid layout.

翻译源自Google翻译

本文由learningyard新学苑原创,如有侵权,请联系删除。

相关推荐

jQuery VS AngularJS 你更钟爱哪个?

在这一次的Web开发教程中,我会尽力解答有关于jQuery和AngularJS的两个非常常见的问题,即jQuery和AngularJS之间的区别是什么?也就是说jQueryVSAngularJS?...

Jquery实时校验,指定长度的「负小数」,小数位未满末尾补0

在可以输入【负小数】的输入框获取到焦点时,移除千位分隔符,在输入数据时,实时校验输入内容是否正确,失去焦点后,添加千位分隔符格式化数字。同时小数位未满时末尾补0。HTML代码...

如何在pbootCMS前台调用自定义表单?pbootCMS自定义调用代码示例

要在pbootCMS前台调用自定义表单,您需要在后台创建表单并为其添加字段,然后在前台模板文件中添加相关代码,如提交按钮和表单验证代码。您还可以自定义表单数据的存储位置、添加文件上传字段、日期选择器、...

编程技巧:Jquery实时验证,指定长度的「负小数」

为了保障【负小数】的正确性,做成了通过Jquery,在用户端,实时验证指定长度的【负小数】的方法。HTML代码<inputtype="text"class="forc...

一篇文章带你用jquery mobile设计颜色拾取器

【一、项目背景】现实生活中,我们经常会遇到配色的问题,这个时候去百度一下RGB表。而RGB表只提供相对于的颜色的RGB值而没有可以验证的模块。我们可以通过jquerymobile去设计颜色的拾取器...

编程技巧:Jquery实时验证,指定长度的「正小数」

为了保障【正小数】的正确性,做成了通过Jquery,在用户端,实时验证指定长度的【正小数】的方法。HTML做成方法<inputtype="text"class="fo...

jquery.validate检查数组全部验证

问题:html中有多个name[],每个参数都要进行验证是否为空,这个时候直接用required:true话,不能全部验证,只要这个数组中有一个有值就可以通过的。解决方法使用addmethod...

Vue进阶(幺叁肆):npm查看包版本信息

第一种方式npmviewjqueryversions这种方式可以查看npm服务器上所有的...

layui中使用lay-verify进行条件校验

一、layui的校验很简单,主要有以下步骤:1.在form表单内加上class="layui-form"2.在提交按钮上加上lay-submit3.在想要校验的标签,加上lay-...

jQuery是什么?如何使用? jquery是什么功能组件

jQuery于2006年1月由JohnResig在BarCampNYC首次发布。它目前由TimmyWilson领导,并由一组开发人员维护。jQuery是一个JavaScript库,它简化了客户...

django框架的表单form的理解和用法-9

表单呈现...

jquery对上传文件的检测判断 jquery实现文件上传

总体思路:在前端使用jquery对上传文件做部分初步的判断,验证通过的文件利用ajaxFileUpload上传到服务器端,并将文件的存储路径保存到数据库。<asp:FileUploadI...

Nodejs之MEAN栈开发(四)-- form验证及图片上传

这一节增加推荐图书的提交和删除功能,来学习node的form提交以及node的图片上传功能。开始之前需要源码同学可以先在git上fork:https://github.com/stoneniqiu/R...

大数据开发基础之JAVA jquery 大数据java实战

上一篇我们讲解了JAVAscript的基础知识、特点及基本语法以及组成及基本用途,本期就给大家带来了JAVAweb的第二个知识点jquery,大数据开发基础之JAVAjquery,这是本篇文章的主要...

推荐四个开源的jQuery可视化表单设计器

jquery开源在线表单拖拉设计器formBuilder(推荐)jQueryformBuilder是一个开源的WEB在线html表单设计器,开发人员可以通过拖拉实现一个可视化的表单。支持表单常用控件...

取消回复欢迎 发表评论: