返回介绍

CSS常见布局

发布于 2024-06-02 22:07:06 字数 3916 浏览 0 评论 0 收藏 0

'display', 'position', and 'float'三者对布局的影响

The three properties that affect box generation and layout — 'display', 'position', and 'float' — interact as follows: If 'display' has the value 'none', then 'position' and 'float' do not apply. In this case, the element generates no box. Otherwise, if 'position' has the value 'absolute' or 'fixed', the box is absolutely positioned, the computed value of 'float' is 'none', and display is set according to the table below. The position of the box will be determined by the 'top', 'right', 'bottom' and 'left' properties and the box's containing block. Otherwise, if 'float' has a value other than 'none', the box is floated and 'display' is set according to the table below. Otherwise, if the element is the root element, 'display' is set according to the table below, except that it is undefined in CSS 2.1 whether a specified value of 'list-item' becomes a computed value of 'block' or 'list-item'. Otherwise, the remaining 'display' property values apply as specified.

一张图: Visual-formatting-model

常见布局

固定尺寸

布局可以从固定尺寸先了解,先构思好页面的主要结构,做动画的元素一般需要绝对定位,方便操作移动。

自适应布局

响应式的布局的结构其实就是多个固定尺寸的组合,元素的宽度,字体的大小一般会以半分比的形式设置。通过媒体查询进行不同分辨率下的布局。

布局方式

居中设置

关于居中,要学会设置水平居中和垂直居中。参考文章:如何只用CSS做到完全居中

参考资料

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文