大概了解了flexbox

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>FLEX</title>
</head>
<body>
<style>
footer{
    display:flex;
    flex-flow:row wrap;
    align-items: stretch;
    /*
    justify-content : flex-end;
    主轴排列方式
    */
    /*
    justify-content : flex-start;
    */
    justify-content : center;
    /*
    justify-content : space-between;
    */
     
    align-content : flex-start;
    /*
    侧轴排列方式
    flex-end : 开头
    center 中心
    space-between 均匀排列
    space-around 另一种均匀排列
    stretch 伸缩排列
    */
}
div{
    /*
    flex: 1 0 7rem;
    width:15%;
    */
}
div:nth-child(1){
    /*flex和在sencha里面的flex一样的
    flex-grow flex-shrink flex-basis;
    */
    flex : 1;
}
div:nth-child(2){
    /*
    在不改变结构的情况下,更改页面排列方式
    */
    order :  1;
    flex : 2
}
</style>
<!--
神奇的flex布局..
-->
<footer>
    <div>1</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
</footer>
</body>
</html>

  

本文作者:方方和圆圆

本文链接:https://www.cnblogs.com/diligenceday/p/3598080.html

版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。

posted @   方方和圆圆  阅读(296)  评论(0编辑  收藏  举报

再过一百年, 我会在哪里?

💬
评论
📌
收藏
💗
关注
👍
推荐
🚀
回顶
收起
点击右上角即可分享
微信分享提示