源码论坛,商业源码下载,尽在锦尚中国商业源码论坛

标题: CSS的justify-content的属性介绍(对齐弹性容器的项目) [打印本页]

作者: 洪七公    时间: 2023-5-19 11:40
标题: CSS的justify-content的属性介绍(对齐弹性容器的项目)

定义和用法:

justify-content 属性(水平)对齐弹性容器的项目,当项目不占用主轴上所有可用空间时。

提示:请使用 align-items 属性 属性垂直对齐项目。

先来看个实例:
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. #main {
  6.   width: 400px;
  7.   height: 100px;
  8.   border: 1px solid #c3c3c3;
  9.   display: flex;
  10.   justify-content: center ;
  11. }

  12. #main div {
  13.   width: 70px;
  14.   height: 70px;
  15.    
  16. }
  17. </style>
  18. </head>
  19. <body>

  20. <h1>justify-content 属性</h1>

  21. <p>The "justify-content: center;" 在容器中央对齐弹性项目:</p>

  22. <div id="main">
  23.   <div style="background-color:coral;">1</div>
  24.   <div style="background-color:lightblue;">2</div>
  25.   <div style="background-color:pink;">3</div>
  26. </div>

  27. <p><b>注释:</b>Internet Explorer 10 以及更早的版本不支持 justify-content 属性。</p>

  28. </body>
  29. </html>
复制代码

效果图如下:



再来看一下space-between中间保留空隙的排版实例:
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. #main {
  6.   width: 400px;
  7.   height: 100px;
  8.   border: 1px solid #c3c3c3;
  9.   display: flex;
  10.   justify-content: space-between;
  11. }

  12. #main div {
  13.   width: 70px;
  14.   height: 70px;
  15.    
  16. }
  17. </style>
  18. </head>
  19. <body>

  20. <h1>justify-content 属性</h1>

  21. <p>The "justify-content: center;" 在容器中央对齐弹性项目:</p>

  22. <div id="main">
  23.   <div style="background-color:coral;">1</div>
  24.   <div style="background-color:lightblue;">2</div>
  25.   <div style="background-color:pink;">3</div>
  26. </div>

  27. <p><b>注释:</b>Internet Explorer 10 以及更早的版本不支持 justify-content 属性。</p>

  28. </body>
  29. </html>
复制代码

效果图如下:



看了一下,是不是对你很有启发,原来需要设置各种左右空隙排版的布局只需要一个样式就可以实现了!

再看下justify-content: flex-start|flex-end|center|space-between|space-around|initial|inherit;这几个属性,有需要的大家可以自己尝试一下

前端设计魅力无穷,后端架构强大无比,不断把自己丰富!好了,今天的教程就介绍到这了,非常感谢大家的支持!更多内容可以搜索锦尚中国源码论坛获取!






欢迎光临 源码论坛,商业源码下载,尽在锦尚中国商业源码论坛 (https://bbs.52jscn.com/) Powered by Discuz! X3.3