周报

周报与一周学习总结


     一周以来学的东西不多不少,仿了京东官网,emmmm低配京东,巩固了html和css的基础知识,抽空学了markdown语法,数据库的学习还是个僵局。。
   
   
  导航栏
     真正仿页面的时候才发现很多东西和学的时候不一样,学是一回事做是另外一回事,真正仿页面的时候才发现很多不会的东西,像是导航栏的实现从前就没有接触过,下面是导航栏的部分代码:
  
  

 html
    
    
    
            

    /*css*/
    .first{
    height: 5em;
    margin: 0px auto;
    background-color: #f0f3ef;
    text-align: center;
}
.first ul{
    list-style-type: none;
    display: inline-block;
    margin: 0px;
    padding: 0px;
}
.first ul li{
    float: left;
}
.first a{
    display: block;
    width: 10em;
    height: 5em;
    line-height: 5em;
    text-decoration: none;
}
.first a:hover{
    background-color: #e3e4e5;
}

                                 

     


 

你可能感兴趣的:(周报)