CSS flex-direction 属性 row 值的作用


将 flex-items 水平排列,可以使用值设为rowflex-direction属性。

以下面的代码为例,了解使用 row 值的实现方式

示例

动态展示

<!DOCTYPE html>
<html>
   <head>
      <style>
         .mycontainer {
            display: flex;
            flex-direction: row;
            background-color: orange;
         }
         .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>
   </body>
</html>

更新于:24-6-2020

已阅读 94 次

开启你的职业生涯

完成课程,获取认证

开始使用
广告