拉钩网前端项目实战01

拉钩网前端项目实战01

整体布局分析以及头部布局设计

网站整体布局分析

网站整体可分为五部分:header search banner content footer
在这里插入图片描述

清除默认样式

/* 清除默认样式 */
* {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}

通用样式

// 通用样式
.main{
    width: 1200px;
    margin: 0 auto;
}

.fl{
    float: left;
}
.fr{
    float: right;
}

.clearFixed:after{
    content: '';
    display: block;
    clear: both;
}

header头部布局设计

html部分

<div class="header">
            <div class="h_top">
                <div class="topCon main clearFixed">
                    <div class="conLeft fl"></div>
                    <div class="conRight fr"></div>
                </div>
            </div>
            <div class="h_bottom">
                <div class="botCon main">
                    <div class="conLeft fl"></div>
                    <div class="conRight fr"></div>
                </div>
            </div>
        </div>

css部分

.header{
    height: 160px;
    .h_top{
        height: 40px;
        background: #32373e;
        .topCon{
            height: 40px;
            background:pink;
            .conLeft{
                height: 40px;
                width: 400px;
                background:blueviolet
            }
            .conRight{
                height: 40px;
                width: 400px;
                background: chocolate;
            }
        }
    }
    .h_bottom {
        height: 120px;
        background: #00b38a;
        .botCon{
            height: 120px;
            background:rosybrown;
            .conLeft{
                width:566px;
                height: 120px;
                background: brown;
            }
            .conRight{
                width:454px;
                height: 120px;
                background: chartreuse;
            }
        }
      }
    
}

在这里插入图片描述
在这里插入图片描述

  • 2
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值