当前位置: 首页 > article >正文

关于 CSS 常用布局及特点作用

1. 浮动布局(Float Layout)

特点
  • 通过 float 属性将元素浮动到左侧或右侧,常用于创建多列布局。
  • 浮动元素会脱离正常的文档流,影响周围的元素布局。
作用
  • 适用于创建简单的多列布局,如新闻网站的多栏文章列表。
  • 用于图像和文本的对齐,如图文混排。
使用方法
.float-left {
    float: left;
    margin-right: 10px;
}

.float-right {
    float: right;
    margin-left: 10px;
}
<div class="float-left">左浮动元素</div>
<div class="float-right">右浮动元素</div>
<div>非浮动元素</div>

2. 定位布局(Positioning Layout)

特点
  • 通过 position 属性控制元素的定位方式,包括 staticrelativeabsolute 和 fixed
  • static 是默认值,元素按照正常文档流排列。
  • relative 相对于自身原来的位置进行定位。
  • absolute 相对于最近的非 static 定位的祖先元素进行定位。
  • fixed 相对于浏览器窗口进行定位。
作用
  • 适用于需要精确控制元素位置的场景,如固定导航栏、模态对话框等。
使用方法
.static {
    position: static;
}

.relative {
    position: relative;
    top: 10px;
    left: 10px;
}

.absolute {
    position: absolute;
    top: 50px;
    left: 50px;
}

.fixed {
    position: fixed;
    bottom: 0;
    right: 0;
}
<div class="static">静态定位</div>
<div class="relative">相对定位</div>
<div class="absolute">绝对定位</div>
<div class="fixed">固定定位</div>

3. Flexbox 布局(Flexible Box Layout)

特点
  • 通过 display: flex 将容器设置为弹性盒子,子元素自动调整大小和位置。
  • 提供了灵活的对齐、排列和顺序控制。
作用
  • 适用于一维布局,如水平或垂直排列的导航栏、卡片组等。
使用方法
.flex-container {
    display: flex;
    justify-content: center; /* 主轴对齐方式 */
    align-items: center;     /* 交叉轴对齐方式 */
    flex-direction: row;     /* 主轴方向 */
    flex-wrap: nowrap;       /* 是否换行 */
}

.flex-item {
    flex: 1;                /* 弹性增长 */
    margin: 10px;
}
<div class="flex-container">
    <div class="flex-item">Item 1</div>
    <div class="flex-item">Item 2</div>
    <div class="flex-item">Item 3</div>
</div>

4. Grid 布局(Grid Layout)

特点
  • 通过 display: grid 将容器设置为网格布局,子元素按照行和列进行排列。
  • 提供了强大的二维布局能力,可以创建复杂的布局结构。
作用
  • 适用于复杂的二维布局,如响应式网格系统、仪表盘等。
使用方法
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 列,每列等宽 */
    grid-template-rows: auto auto;         /* 2 行,高度自适应 */
    gap: 10px;                             /* 网格间距 */
}

.grid-item {
    background-color: lightblue;
    padding: 20px;
}
<div class="grid-container">
    <div class="grid-item">Item 1</div>
    <div class="grid-item">Item 2</div>
    <div class="grid-item">Item 3</div>
    <div class="grid-item">Item 4</div>
    <div class="grid-item">Item 5</div>
    <div class="grid-item">Item 6</div>
</div>

5. 多列布局(Multi-column Layout)

特点
  • 通过 column-count 和 column-width 属性创建多列布局。
  • 适用于长文本内容的分栏显示。
作用
  • 适用于新闻网站、杂志等需要分栏显示的场景。
使用方法
.multi-column {
    column-count: 3;          /* 列数 */
    column-gap: 20px;         /* 列间距 */
    column-rule: 1px solid #ccc; /* 列间隔线 */
}
<div class="multi-column">
    <p>这是很长的一段文字,将会被分成多列显示。</p>
</div>

6. 表格布局(Table Layout)

特点
  • 通过 display: tabledisplay: table-row 和 display: table-cell 属性模拟表格布局。
  • 适用于需要表格样式的布局,但又不想使用 <table> 元素的情况。
作用
  • 适用于需要表格样式的布局,如时间表、价格表等。
使用方法
.table-container {
    display: table;
    width: 100%;
}

.table-row {
    display: table-row;
}

.table-cell {
    display: table-cell;
    border: 1px solid #ccc;
    padding: 10px;
}
<div class="table-container">
    <div class="table-row">
        <div class="table-cell">Cell 1</div>
        <div class="table-cell">Cell 2</div>
    </div>
    <div class="table-row">
        <div class="table-cell">Cell 3</div>
        <div class="table-cell">Cell 4</div>
    </div>
</div>

总结

  • 浮动布局:适用于简单的多列布局和图文混排。
  • 定位布局:适用于需要精确控制元素位置的场景。
  • Flexbox 布局:适用于一维布局,如导航栏、卡片组等。
  • Grid 布局:适用于复杂的二维布局,如响应式网格系统、仪表盘等。
  • 多列布局:适用于长文本内容的分栏显示。
  • 表格布局:适用于需要表格样式的布局,但又不想使用 <table> 元素的情况。

每种布局方式都有其特定的优势和适用场景,选择合适的布局方式可以大大提高网页的设计和用户体验。


http://www.kler.cn/a/386221.html

相关文章:

  • 【Window主机访问Ubuntu从机——Xrdp配置与使用】
  • 有了Makefile, CMake存在的意义是什么?如何借助Makefile构建ObjC语言编译环境?如何获取编译器的版本号?
  • Vim 编辑器学习笔记
  • 高级java每日一道面试题-2024年11月06日-JVM篇-什么是 Class 文件? Class 文件主要的信息结构有哪些?
  • 重卡穿越商都,ROG DAY 2024郑州站高燃来袭
  • 开源模型应用落地-qwen模型小试-Qwen2.5-7B-Instruct-tool usage入门-集成心知天气(二)
  • 微信小程序-事件总线
  • BP 神经网络模型:原理、实现与应用
  • GFPS技术原理(二)-模型注册和配置
  • react中的组件传参
  • pythons工具——图像的随机增强变换(只是变换了图像,可用于分类训练数据的增强)
  • Elasticsearch 实战应用详解!
  • Vue3+exceljs+file-saver 实现将表格数据中包含图片导出Excel
  • 算法
  • vite构建的react程序放置图片
  • 怎么样鉴定疾病相关稀有细胞群?二值化精细模型标签,这个刚发的顶刊单细胞算法值得一学!
  • 字符串查询c++
  • ROS学习笔记
  • 排序(用java实现)
  • GIT GUI和 GIT bash区别
  • 交换排序与快速排序
  • PCIE RTT 简单介绍
  • flink 内存配置(四):内存调优和问题处理
  • STM32ZET6-USART使用
  • Linux基础4-进程3(进程优先级,竞争,独立,并行,并发,进程切换)
  • CopyOnWriteArrayList 的应用场景:并发环境中的强大工具