博客列表 >CSS弹性盒之弹性容器和弹性元素的学习-PHP培训9期线上班

CSS弹性盒之弹性容器和弹性元素的学习-PHP培训9期线上班

木易
木易原创
2019年11月06日 16:34:38714浏览

pubilc代码:

.container{
    border: 1px solid black;
    margin: 15px;
    background-color: lightblue;
}
.item{
box-sizing: border-box;
border: 1px solid;
padding: 10px;
    background-color: lawngreen;
}
.flex{
    display: flex;
}

demo1:

@import "public.css";
.inline-flex{
display: inline-flex;
}

1.png

demo2:

a{
padding: 5px 10px;
    text-decoration-line: none;
margin: 0 5px ;
    background-color: lightblue;
border-radius: 4px;
color: black;
    box-shadow: 2px 0 1px #bdbdbd;
}
a:hover,a:active,a:focus{
    font-size: 20px;
    background-color: lightcoral;

}
nav{
    display: flex;
    border-bottom: 1px solid grey;
}

2 (1).png

demo3:

@import "public.css";
.row{
    flex-direction: row;
}
.row-reverse{
    flex-direction: row-reverse;
}
.column{
    flex-direction: column;
}
.column-reverse{
    flex-direction: column-reverse;
}

3.pngdemo4:

* {
    margin: 10px;
}

img {
    width: 200px;
    height: 150px;
}

body, nav, main, article {
    display: flex;
}

body, article {
    flex-direction: column;
}
button{
    height: 40px;
    font-size: 20px;
    background-color: #2ab5ff;
    color: white;
    border-radius: 4px;
    border: 0;
    cursor: pointer;
}

4.png

demo5:

@import "public.css";
.container{
    width: 500px;
}
.nowrap{
    flex-wrap: nowrap;
}
.wrap{
    flex-wrap: wrap;
}
.wrap-reverse{
    flex-wrap: wrap-reverse;
}

5.png

demo6:

@import "public.css";
.container{
    width: 500px;
}
.nowrap{
    flex-flow: row nowrap;
}
.wrap{
    flex-flow: row wrap;
}
.wrap-reverse{
    flex-flow:row wrap-reverse;
}

6.png

demo7:

@import url(public.css);

.container {
    width: 550px;
}

.wrap {
    flex-wrap: wrap;
}

.flex-start {
    justify-content: flex-start;
}

.flex-end {
    justify-content: flex-end;
}

.center {
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

.space-around {
    justify-content: space-around;
}
.space-evenly{
    justify-content: space-evenly;
}

demo8:

a{
padding: 5px 10px;
margin: 0 5px;
text-decoration-line: none;
    background-color: lightcoral;
box-shadow: 2px 0 1px gainsboro;
    color: black;
    border-radius: 4px;
}
a:hover,a:focus,a:active{
    background-color: orange;
    font-size: 20px;
}
nav{
display: flex;
border-bottom:1px solid grey;
}
nav{
justify-content: flex-start;
}
nav{
    justify-content: flex-end;
}
nav{
    justify-content: center;
}

8.png

demo9:

@import "public.css";
.container{
width: 550px;
height: 300px;
}
.wrap{
flex-wrap: wrap;
}
.stretch{
align-items: stretch;
}
.flex-start{
align-items: flex-start;
}
.flex-end{
    align-items: flex-end;
}
.center{
align-items: center;
}
.wrap-stretch{
    align-items: stretch;
}
.wrap-flex-start{
    align-items: flex-start;
}
.wrap-flex-end{
    align-items: flex-end;
}
.wrap-center{
    align-content: center;
}
.wrap-space-between{
align-content: space-between;
}
.wrap-space-around{
    align-content: space-around;
}
.wrap-space-evenly{
    align-content: space-evenly;
}
.all-align{
justify-content: space-around;
    align-content: space-around;
}


手写作业:

          



声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议