搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS3教程
CSS3基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Flex项目沿着主轴对齐示例 -基础教程 div.cn</title> <style> .flex-container { width: 500px; min-height: 300px; margin: 0 auto; font-size: 32px; border: 1px solid #666; /* Safari */ display: -webkit-flex; -webkit-justify-content: space-around; /* Standard syntax */ display: flex; justify-content: space-around; } .flex-container div{ padding: 10px; } .item1 { width: 75px; background: #e84d51; } .item2 { width: 125px; background: #7ed636; } .item3 { width: 175px; background: #2f97ff; } </style> </head> <body> <div class="flex-container"> <div class="item1">1</div> <div class="item2">2</div> <div class="item3">3</div> </div> <p> <strong>注意:</strong>尝试为justify-content属性设置其他值,例如“ flex-start”,“ flex-end”,“ center”和“ space-between”,以了解其对齐方式 flex容器中的项目。</p> </body> </html>
运行结果