CSS 高级布局技巧
用 :empty 区分空元素
兼容性:不支持 IE8
假如我们有以上列表:
<div class="item">a</div> <div class="item">b</div> <div class="item"></div>
我们希望可以对空元素和非空元素区别处理,那么有两种方案。
用 :empty 选择空元素:
.item:empty { display: none; }
或者用 :not(:empty) 选择非空元素:
.item:not(:empty) { border: 1px solid #ccc; /* ... */ }
用 :*-Of-Type 选择元素
兼容性:不支持 IE8
举例说明。
给第一个 p 段落加粗:
p:first-of-type { font-weight: bold; }
给最后一个 img 加边框:
img:last-of-type { border: 10px solid #ccc; }
给无相连的 blockquote 加样式:
blockquote:only-of-type { border-left: 5px solid #ccc; padding-left: 2em; }
让奇数列的 p 段落先死红色:
p:nth-of-type(even) { color: red; }
此外,:nth-of-type 还可以有其他类型的参数:
/* 偶数个 */
:nth-of-type(even)
/* only 第三个 */
:nth-of-type(3)
/* 每第三个 */
:nth-of-type(3n)
/* 每第四加三个,即 3, 7, 11, ... */
:nth-of-type(4n+3)
用 calc 做流式布局
兼容性:不支持 IE8
左中右的流式布局:
nav { position: fixed; left: 0; top: 0; width: 5rem; height: 100%; } aside { position: fixed; right: 0; top: 0; width: 20rem; height: 100%; } main { margin-left: 5rem; width: calc(100% - 25rem); }
用 vw 和 vh 做全屏滚动效果
兼容性:不支持 IE8
vw 和 vh 是相对于 viewport 而言的,所以不会随内容和布局的变化而变。
section { width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; } section:nth-of-type(1) { background-image: url('https://unsplash.it/1024/683?image=1068'); } section:nth-of-type(2) { background-image: url('https://unsplash.it/1024/683?image=1073'); } section:nth-of-type(3) { background-image: url('https://unsplash.it/1024/683?image=1047'); } section:nth-of-type(4) { background-image: url('https://unsplash.it/1024/683?image=1032'); } body { margin: 0; } p { color: #fff; font-size: 100px; font-family: monospace; }
用 unset 做 CSS Reset
兼容性:不支持 IE
body { color: red; } button { color: white; border: 1px solid #ccc; } /* 取消 section 中 button 的 color 设置 */ section button { color: unset; }
用 column 做响应式的列布局
兼容性:不支持 IE9
nav { column-count: 4; column-width: 150px; column-gap: 3rem; column-rule: 1px dashed #ccc; column-fill: auto; } h2 { column-span: all; }
更多CSS 高级布局技巧相关文章请关注PHP中文网!

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

热门话题

如何使用 Bootstrap 按钮?引入 Bootstrap CSS创建按钮元素并添加 Bootstrap 按钮类添加按钮文本

在 Bootstrap 中插入图片有以下几种方法:直接插入图片,使用 HTML 的 img 标签。使用 Bootstrap 图像组件,可以提供响应式图片和更多样式。设置图片大小,使用 img-fluid 类可以使图片自适应。设置边框,使用 img-bordered 类。设置圆角,使用 img-rounded 类。设置阴影,使用 shadow 类。调整图片大小和位置,使用 CSS 样式。使用背景图片,使用 background-image CSS 属性。

要设置 Bootstrap 框架,需要按照以下步骤:1. 通过 CDN 引用 Bootstrap 文件;2. 下载文件并将其托管在自己的服务器上;3. 在 HTML 中包含 Bootstrap 文件;4. 根据需要编译 Sass/Less;5. 导入定制文件(可选)。设置完成后,即可使用 Bootstrap 的网格系统、组件和样式创建响应式网站和应用程序。

要调整 Bootstrap 中元素大小,可以使用尺寸类,具体包括:调整宽度:.col-、.w-、.mw-调整高度:.h-、.min-h-、.max-h-

答案:可以使用 Bootstrap 的日期选择器组件在页面中查看日期。步骤:引入 Bootstrap 框架。在 HTML 中创建日期选择器输入框。Bootstrap 将自动为选择器添加样式。使用 JavaScript 获取选定的日期。

在 Bootstrap 中验证日期,需遵循以下步骤:引入必需的脚本和样式;初始化日期选择器组件;设置 data-bv-date 属性以启用验证;配置验证规则(如日期格式、错误消息等);集成 Bootstrap 验证框架,并在表单提交时自动验证日期输入。

可以通过 Bootstrap 实现文件上传功能,步骤如下:引入 Bootstrap CSS 和 JavaScript 文件;创建文件输入字段;创建文件上传按钮;处理文件上传(使用 FormData 收集数据,然后发送到服务器);自定义样式(可选)。

创建 Bootstrap 分割线有两种方法:使用 标签,可创建水平分割线。使用 CSS border 属性,可创建自定义样式的分割线。
