html,css笔试题分享

水平垂直居中(宽高都已知,实现居中效果)

问题:1.让一个200*200px的正方形在不同分辨率的屏幕中上下居中?

div{
/*方法一*/
	width: 200px;
    height: 200px;
    background-color: red;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -100px;
    margin-top: -100px;
}
div{
/*方法二*/
	width: 200px;
    height: 200px;
    background-color: red;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin-left: -100px;
    margin-top: -100px;
}

(双飞翼布局)

2.写一个左右布局占满屏幕,其中左,右两块固定宽200px,中间自适应宽,要求先加载中间块,写出结构和样式

在这里插入图片描述

.left,.right{
            width: 200px;
            background-color: #51abff;

        }
        .content{
            width: 100%;
            margin-left: 200px;
            margin-right: 200px;
        }
        .left{
            margin-left: -100%;
        }
        .rigth{
            margin-right: -100%;
        }
/**/
<div class="content">中间</div>
<div class="left">左边</div>
<div class="right">右边</div>

3. 清除浮动的几种方法:

  1. 添加一个盒子,加入clear:both;(缺点:多了一个盒子)
  2. 给父元素加入overflow:hidden;
  3. 给父元素加上伪元素,div : after { content: "’’; clear:both;display:table;}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值