CSS flex-wrap 属性

原创
ithorizon 5个月前 (10-19) 阅读数 48 #CSS

使用 flex-wrap属性来设置flex项目是否换行。

您可以尝试运行以下代码来实现flex-wrap属性。这里的flex项目会换行

示例

实时演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         .mycontainer {
            display: flex;
            background-color: orange;
            flex-wrap: wrap;
         }
         .mycontainer > div {
            background-color: white;
            text-align: center;
            line-height: 40px;
            font-size: 25px;
            width: 100px;
            margin: 5px;
         }
      </style>
   </head>
   <body>
      <h1>Quiz</h1>
      <div class = "mycontainer">
         <div>Q1</div>
         <div>Q2</div>
         <div>Q3</div>
         <div>Q4</div>
         <div>Q5</div>
         <div>Q6</div>
         <div>Q7</div>
         <div>Q8</div>
         <div>Q9</div>
      </div>
   </body>
</html>

以上就是CSS flex-wrap 属性的详细内容,更多请关注IT视界其它相关文章!



热门