flex布局-修改主轴方向
- <title>flex布局-修改主轴方向</title>
- <style>
- .box {
- display: flex;
-
- /* 修改主轴方向 垂直方向;侧轴自动变换到水平方向 */
- flex-direction: column;
-
- /* 主轴在垂直,视觉效果:垂直居中 */
- justify-content: center;
-
- /* 侧轴在水平,视觉效果:水平居中 */
- align-items: center;
-
- width: 150px;
- height: 120px;
- background-color: pink;
- }
-
- img {
- width: 32px;
- height: 32px;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <img src="./images/1.png" alt="">
- <span>媒体</span>
- </div>
- </body>
复制代码
|