!
也想出现在这里? 联系我们
广告位

CSS 轻松实现常用的10种现代网页布局

页面布局是样式开发的第一步,也是 CSS 最重要的功能之一。常用的页面布局,其实就那么几个。下面我会介绍 10 个经典布局,只要掌握了它们,就能应对绝大多数常规页面。我会用到 CSS 的 Flex 语法和 Grid 语法,不过只用到一点点,不熟悉的朋友可以先看看教程链接,熟悉一下基本概念。

居中布局

在没有和 flex grid 之前,垂直居中一直不能很优雅的实现。而现在,可以结合我们 grid 和 place-items 优雅的实现同时水平居中和垂直居中。

  1. <div class="parent blue" > <div class="box coral" contenteditable> 🙂 </div>
  1. .ex1 .parent { display: grid; place-items: center; }

CSS 轻松实现常用的10种现代网页布局

可解构的自适应布局

这种布局经常出现在电的网站:

在视口足够的时候,三个框固定宽度横放

在视口不够的时候(宽度在移动上面),宽度仍然固定,,但是自动解构(原谅我的中文水平),不在同一水平面上

  1. <div class="parent white"> <div class="box green">1</div> <div class="box green">2</div> <div class="box green">3</div> </div>
  1. .ex2 .parent { display: flex; flex-wrap: wrap; justify-content: center; }
  2. .ex2 .box { flex: 1 1 150px; /* flex-grow: 1 ,表示自动延展到最大宽度 */ flex: 0 1 150px; /* No stretching: */ margin: 5px; }

CSS 轻松实现常用的10种现代网页布局
当我们设置 flex: 1 1 150px;时候:
CSS 轻松实现常用的10种现代网页布局

经典的侧边栏

同样使用 grid 布局,结合可以 minmax()实现弹性的的这在你要适应大屏幕的时候很有用)。minmax(, )就是字面意思。结合单位,非常优雅,避免了数学计算宽度等不灵活的手段(的我们设置间隙手段时候)。

  1. <div class="parent"> <div class="p yellow" contenteditable> Min: 150px / Max: 25% </div> <div class="p purple" contenteditable> This element takes the second grid position (1fr), meaning it takes up the rest of the remaining space. </div> </div>
  1. .ex3 .parent { display: grid; grid-template-columns: minmax(150px, 25%) 1fr; }

CSS 轻松实现常用的10种现代网页布局

固定的页眉和页脚

固定高度的页眉和页脚,并保留剩余空间的主体是经常使用的布局,我们可以利用 grid 和 fr 单位完子实现。

  1. <div class="parent"> <header class="blue p" contenteditable>Header</header> <main class="coral p" contenteditable>Main</main> <footer class="purple p" contenteditable>Footer Content</footer> </div>
  1. .ex4 .parent { display: grid; grid-template-rows: auto 1fr auto; }

CSS 轻松实现常用的10种现代网页布局

经典的圣杯布局(古典圣杯布局)

我们可以轻松地使用网格布局来实现圣杯布局,并且是弹性的。

  1. <div class="parent"> <header class="pink p">Header</header> <div class="left-side blue p" contenteditable>Left Sidebar</div> <main class="p coral" contenteditable> Main Content</main> <div class="right-side yellow p" contenteditable>Right Sidebar</div> <footer class="green p">Footer</footer> </div>
  1. .ex5 .parent { display: grid; grid-template: auto 1fr auto / auto 1fr auto; } .ex5 header { padding: 2rem; grid-column: 1 / 4; }
  2. .ex5 .left-side { grid-column: 1 / 2; }
  3. .ex5 main { grid-column: 2 / 3; }
  4. .ex5 .right-side { grid-column: 3 / 4; }
  5. .ex5 footer { grid-column: 1 / 4; }

CSS 轻松实现常用的10种现代网页布局

有意思的的叠块

使用 grid-template-columns 状语从句:grid-column 可以实现如下图产品所示的布局。说明进一步了 repeat 状语从句:fr 的便捷性。
CSS 轻松实现常用的10种现代网页布局

RAM 技巧

这在弹性布局图片/ box 这种非常有用(行可以排放的卡片数量自动适应)。

  1. .ex7 .parent { display: grid; grid-gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  1. <div class="parent white"> <div class="box pink">1</div> <div class="box purple">2</div> <div class="box blue">3</div> <div class="box green">4</div> </div>

其效果是如果确保能够满足多个盒的最小宽度(例如上面的 150px),则自动弹性适应放置多行。

当前宽度是 160px(不考虑 gap),那么上面四个 box 的宽度会适应为 160px,并且分为 4 行

当前宽度是 310px(不考虑间隙),上面四个 box 分段两行,两个 box 平分宽度

当满足满足一行放下 3 个 box 时,第三个 box 自动到第一行

当满足满足一行放下 4 个 box 时,第四个 box 自动到第一行
CSS 轻松实现常用的10种现代网页布局
我们如果将 auto-fit 对划线 auto-fill:
CSS 轻松实现常用的10种现代网页布局

卡片弹性适应性

justify-content: space-between,结合 grid 和 flex 实现完的布局。

  1. <div class="parent white"> <div class="card yellow"> <h3>Title - Card 1</h3> <p contenteditable>Medium length description with a few more words here.</p> <div class="visual pink"></div> </div> <div class="card yellow"> <h3>Title - Card 2</h3> <p contenteditable>Long Description. Lorem ipsum dolor sit, amet consectetur adipisicing elit.</p> <div class="visual blue"></div> </div> <div class="card yellow"> <h3>Title - Card 3</h3> <p contenteditable>Short Description.</p> <div class="visual green"></div> </div> </div>
  1. .ex8 .parent { height: auto; display: grid; grid-gap: 1rem; grid-template-columns: repeat(3, 1fr); }
  2. .ex8 .visual { height: 100px; width: 100%; }
  3. .ex8 .card { display: flex; flex-direction: column; padding: 1rem; justify-content: space-between; }
  4. .ex8 h3 { margin: 0 }

CSS 轻松实现常用的10种现代网页布局
无论是宽度或高度的收缩还是延展,,都可以完子的展现卡的布局。

使用夹具实现流体印刷

最新使用的 clamp()方法可以一行实现流体排版。提高 UX,非常适合包含阅读内容的卡,因为我们不希望一行字太短或太长。

  1. <div class="parent white"> <div class="card purple"> <h1>Title Here</h1> <div class="visual yellow"></div> <p>Descriptive Text. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Sed est error repellat veritatis.</p> </div> </div>
  1. .ex9 .parent { display: grid; place-items: center; }
  2. .ex9 .card { width: clamp(23ch, 50%, 46ch); display: flex; flex-direction: column; padding: 1rem; }
  3. .ex9 .visual { height: 125px; width: 100%; }

完美比例

在展现 CMS 或其他设计内容时,我们会期待图片,视频,卡片能够按照固定的比例进行布局。而最新的 aspect-ratio 可以优雅的实现该功能(使用 chrome 84+)

  1. <div class="parent white"> <div class="card blue"> <h1>Video Title</h1> <div class="visual green"></div> <p>Descriptive Text. This demo works in Chromium 84+.</p> </div> </div>
  1. .ex10 .parent { display: grid; place-items: center; }
  2. .ex10 .visual { aspect-ratio: 16 / 9; }
  3. .ex10 .card { width: 50%; display: flex; flex-direction: column; padding: 1rem; }

给TA打赏
共{{data.count}}人
人已打赏
前端学习

详解使用『rem』实现自适应响应式布局

2024-8-30 14:16:36

前端学习

Zepto Lazy 实现CSS背景图像实现延迟加载jQuery插件

2024-8-30 14:16:45

下载说明

  • 1、微码盒所提供的压缩包若无特别说明,解压密码均为weimahe.com
  • 2、下载后文件若为压缩包格式,请安装7Z软件或者其它压缩软件进行解压;
  • 3、文件比较大的时候,建议使用下载工具进行下载,浏览器下载有时候会自动中断,导致下载错误;
  • 4、资源可能会由于内容问题被和谐,导致下载链接不可用,遇到此问题,请到文章页面进行反馈,以便微码盒及时进行更新;
  • 5、其他下载问题请自行搜索教程,这里不一一讲解。

站长声明

本站大部分下载资源收集于网络,只做学习和交流使用,版权归原作者所有;若为付费资源,请在下载后24小时之内自觉删除;若作商业用途,请到原网站购买;由于未及时购买和付费发生的侵权行为,与本站无关。本站发布的内容若侵犯到您的权益,请联系本站删除,我们将及时处理!
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索