Blogger Information
Blog 28
fans 0
comment 0
visits 20961
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
参考发布的前端框架手册, 依照着写出一个类似的小框架—2019年9月11日
L先生的博客
Original
541 people have browsed it

/*导航区*/

.nav {

    height: 170px;

    background-color: white;

    box-sizing: border-box;

}

.nav ul {

    margin: 0;

    padding: 6px;

}


.nav ul li {

    list-style-type: none;

    text-align: center;

    height: 75px;

}


.nav ul li img {

    width: 45px;

    height: 45px;

}

.nav ul li a {

    text-align: center;

    color: gray;

    text-decoration: none;

}

.nav ul {

    display: flex;

}


.nav ul li {

    flex: 1;

}


/*推荐课程区*/

h3 {

    color:gray;

}


.courses {

    height: 326px;

    color: gray;

}


.courses ul {

    margin: 0;

    padding: 0;


    list-style: none;


    /*flex布局*/

    display: flex;

}


.courses ul li {

    padding: 5px;

}


.courses ul img {

    width: 100%;

    height: 90px;

}


.courses div {

    background-color: white;

    padding: 10px;


    margin-top: 10px;

    height: 90px;


    /*flex布局*/

    display: flex;

    justify-content: flex-start;

}


.courses div img {

    width: 100%;

    height: 90px;

}


.courses div a {

    text-decoration: none;

    color: gray;

    flex: 0.45;

}


.courses div p {

    flex: .55;

    margin-left: 15px;

}


.courses div p span:


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments