源码论坛,商业源码下载,尽在锦尚中国商业源码论坛
标题:
CSS的justify-content的属性介绍(对齐弹性容器的项目)
[打印本页]
作者:
洪七公
时间:
2023-5-19 11:40
标题:
CSS的justify-content的属性介绍(对齐弹性容器的项目)
定义和用法:
justify-content 属性(水平)对齐弹性容器的项目,当项目不占用主轴上所有可用空间时。
提示:请使用 align-items 属性 属性垂直对齐项目。
先来看个实例:
<!DOCTYPE html>
<html>
<head>
<style>
#main {
width: 400px;
height: 100px;
border: 1px solid #c3c3c3;
display: flex;
justify-content: center ;
}
#main div {
width: 70px;
height: 70px;
}
</style>
</head>
<body>
<h1>justify-content 属性</h1>
<p>The "justify-content: center;" 在容器中央对齐弹性项目:</p>
<div id="main">
<div style="background-color:coral;">1</div>
<div style="background-color:lightblue;">2</div>
<div style="background-color:pink;">3</div>
</div>
<p><b>注释:</b>Internet Explorer 10 以及更早的版本不支持 justify-content 属性。</p>
</body>
</html>
复制代码
效果图如下:
再来看一下space-between中间保留空隙的排版实例:
<!DOCTYPE html>
<html>
<head>
<style>
#main {
width: 400px;
height: 100px;
border: 1px solid #c3c3c3;
display: flex;
justify-content: space-between;
}
#main div {
width: 70px;
height: 70px;
}
</style>
</head>
<body>
<h1>justify-content 属性</h1>
<p>The "justify-content: center;" 在容器中央对齐弹性项目:</p>
<div id="main">
<div style="background-color:coral;">1</div>
<div style="background-color:lightblue;">2</div>
<div style="background-color:pink;">3</div>
</div>
<p><b>注释:</b>Internet Explorer 10 以及更早的版本不支持 justify-content 属性。</p>
</body>
</html>
复制代码
效果图如下:
看了一下,是不是对你很有启发,原来需要设置各种左右空隙排版的布局只需要一个样式就可以实现了!
再看下justify-content: flex-start|flex-end|center|space-between|space-around|initial|inherit;这几个属性,有需要的大家可以自己尝试一下
前端设计魅力无穷,后端架构强大无比,不断把自己丰富!好了,今天的教程就介绍到这了,非常感谢大家的支持!更多内容可以搜索锦尚中国源码论坛获取!
欢迎光临 源码论坛,商业源码下载,尽在锦尚中国商业源码论坛 (https://bbs.52jscn.com/)
Powered by Discuz! X3.3