zoukankan      html  css  js  c++  java
  • HTML连载52-网易注册界面之上部完成、中部初探

    一、看一下注释即可,都是前面学到的知识,然后进行整合完成网页的制作,未完待续,这个网易界面跨度可大三天。

    <!DOCTYPE html>
    
    <html lang="en">
    
    <head>
    
        <meta charset="UTF-8">
    
        <title>D139_FrameworkeOfNeteasyInterface</title>
    
        <style>
    
            .header{
    
                width:960px;
    
                height:80px;
    
                /*background-color: red;*/
    
                margin: 0 auto;
    
                overflow: hidden;
    
                padding-top:14px;
    
                box-sizing: border-box;/*这里我们采用内上边距的办法将logo挤下去达到垂直居中的目的*/
    
                /*同时这个box-sizing的属性就是将这个header固定住,不让他因为内边距而变化大小了*/
    
            }
    
            .content{
    
                width: 960px;
    
                height: 600px;
    
                background-color: blue;
    
                margin: 0 auto;}
    
            .footer{
    
                width: 960px;
    
                height: 48px;
    
                background-color: yellow;
    
                margin: 0 auto ;
    
            }
    
            .header .logo{
    
                width:748px;
    
                height: 47px;
    
                background:url("image/netEasyLogo.jpg") no-repeat 0 0;/*从图片的坐标(0,0)开始铺,no-repeat就是只铺这一张不要多铺*/
    
                /*margin-top: 12px;*/
    
                float:left;
    
            }
    
            .header .links{
    
                height: 42px;
    
                width: 150px;
    
                /*background-color: red;*/
    
                float:right;
    
            }
    
            .header .logo a {
    
                width:156px;
    
                height:45px;/*测量出那一块区域,然后这一块区域都是超级链接*/
    
                /*background-color: red;*/
    
                display: inline-block;/*转换为行内块级标签*/
    
            }
    
            .header .links a{
    
                text-decoration:none;/*去掉下划线*/
    
                font-size: 16px;
    
                color:black;
    
                line-height: 45px;/*这里复习了文字不能居中,使用这个属性让它和links盒子的高度一致,那就做到文字在盒子中居中*/
    
                text-align: right;/*复习了文字右对齐*/
    
            }
    
            .content{
    
                width: 960px;
    
                height: 600px;}
    
            .content .top{
    
                width: 960px;
    
                height: 38px;
    
                background-color: red;
    
                background: url("image/wangyi_center.jpg") 0 0;/*让这张小图片把top这个区域全部铺满*/
    
            }
    
            .content .bottom{
    
                width: 960px;
    
                height: 562px;
    
                background-color: green;
    
            }
    
    </style>
    
    </head>
    
    <body>
    
    <div class="header">
    
        <div class="logo" >
    
            <a href="https://www.163.com/" title="网易163免费邮箱"></a><a href="https://www.126.com/" title="网易126免费邮箱"></a><a href="#" title="网易yeah免费邮箱"></a>
    
            <!--复习了a标签的使用,title就是指鼠标放到超链接上就会显示的文字-->
    
        </div>
    
        <div class="links">
    
            <a href="http://www.baidu.com">了解更多</a>|<a href="#">反馈意见</a>
    
        </div>
    
    </div>
    
    <div class="content">
    
        <div class="top"></div>
    
        <div class="bottom"></div>
    
    </div>
    
    <div class="footer"></div>
    
    </body>
    
    </html>
    
     

    三、源码:

    D139_FrameworkeOfNeteasyInterface.html

    地址:

    https://github.com/ruigege66/HTML_learning/blob/master/D139_FrameworkeOfNeteasyInterface.html

    2.CSDN:https://blog.csdn.net/weixin_44630050(心悦君兮君不知-睿)

    3.博客园:https://www.cnblogs.com/ruigege0000/

    4.欢迎关注微信公众号:傅里叶变换,个人账号,仅用于技术交流,后台回复“礼包”获取Java大数据学习视频礼包

     

  • 相关阅读:
    python
    car-travel project
    数据库
    kafka笔记
    cloudera笔记
    上课笔记
    structured streaming
    SparkSQL
    流数据
    spark厦门大学
  • 原文地址:https://www.cnblogs.com/ruigege0000/p/11914949.html
Copyright © 2011-2022 走看看