FCC---CSS Flexbox: Use the flex-direction Property to Make a Row
2021-05-12 12:29
标签:horizon ora class direction idt use turn -- lex Adding This makes it possible to align any children of that element into rows or columns. You do this by adding the Creating a row will align the children horizontally, and creating a column will align the children vertically. Other options for Note: The default value for the Add the CSS property from: to: FCC---CSS Flexbox: Use the flex-direction Property to Make a Row 标签:horizon ora class direction idt use turn -- lex 原文地址:https://www.cnblogs.com/jane-panyiyun/p/12008183.htmldisplay: flex
to an element turns it into a flex container.flex-direction
property to the parent item and setting it to row or column.flex-direction
are row-reverse and column-reverse.flex-direction
property is row
.
flex-direction
to the #box-container
element, and give it a value of row-reverse
.
style>
#box-container {
display: flex;
height: 500px;
flex-direction: row-reverse;
}
#box-1 {
background-color: dodgerblue;
width: 50%;
height: 50%;
}
#box-2 {
background-color: orangered;
width: 50%;
height: 50%;
}
style>
div id="box-container">
div id="box-1">div>
div id="box-2">div>
div>
上一篇:4.Vue.js-起步
下一篇:8.Vue.js-计算属性
文章标题:FCC---CSS Flexbox: Use the flex-direction Property to Make a Row
文章链接:http://soscw.com/index.php/essay/84690.html