前端学习笔记之4 静态页面练习(百度)

引言 : 博主目前是一名iOS开发者, 所会的语言有Objective-C 和 Swift, 目前正在学习前端; 这篇文章只是作为我的笔记发在这里, 供自己业余时间看看; 全是很基础的东西, 看到的小伙伴 酌情略过_

效果图

前端学习笔记之4 静态页面练习(百度)_第1张图片
这里写图片描述

1. index.html




    
    百度一下,你就知道
    


    
    
    
    
![](images/d_1.JPEG) ![](images/d_2.JPEG) ![](images/d_3.JPEG) ![](images/d_4.JPEG)
![](images/d_5.JPEG) ![](images/d_6.JPEG) ![](images/d_7.JPEG) ![](images/d_8.JPEG)

2. index.css

* {
    margin: 0px;
    padding: 0px;
}

body {
    /*背景图片, 其中 ../ 是返回到上一层目录*/
    /*background: url("../images/d_1.JPEG");*/
}

/*头部*/
#header{
    text-align: right;
    height: 30px;
    line-height: 30px;
    margin-top: 1px;
}
#header a{
    margin: 0px 15px 0px 0px;
}

#header a.more-product{
    display: inline-block;
    color: white;
    background-color: rgb(51, 136, 255);
    height: 30px;
    line-height: 30px;
    padding: 0px 20px;
    text-decoration: none;
    margin-right: 0px;
}

/*主要内容*/
#content{
    text-align: center;
}
#content .logo img{
    width: 270px;
    height: 129px;
    margin: 15px auto 0px;
}
#content .search {
    width: 600px;
    height: 40px;
    margin: 0px auto;
    margin-bottom: 40px;
}
#content .search input{
    width: 500px;
    height: 40px;
    padding: 9px 7px;
    border: solid rgb(204, 204, 204) 1px;
    margin: 0px;
    /*向外扩展*/
    box-sizing: border-box;
}
/*焦点*/
#content .search input:focus{
    outline: none;
    border: solid 1px rgb(51, 136, 255);
}
#content .search a {
    display: inline-block;
    color: white;
    background-color: rgb(51, 136, 255);
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-decoration: none;
    text-align: center;
    float: right;
}
/*鼠标放上去的时候*/
#content .search a:hover {
    background-color: rgba(51, 136, 255, 0.7);
}
#content .dom img {
    width: 150px;
    height: 100px;
    margin: 5px 10px;
}
/*鼠标放上去的时候*/
#content .dom img:hover{
    /*设置不透明度*/
    opacity: 0.7;
}
/*尾部*/
#footer{
    margin-top: 120px;
    text-align: center;
}
#footer p{
    margin-top: 5px
}
#footer p.footer-top{
    margin: 0px 5px;
}

a:hover {
    opacity: 0.7;
}

你可能感兴趣的:(前端学习笔记之4 静态页面练习(百度))