当前位置:Gxlcms > css > css使用relative模仿百度首页top

css使用relative模仿百度首页top

时间:2021-07-01 10:21:17 帮助过:105人阅读

最近在学习HTML、CSS的过程中,想模仿一下百度首页。发现搜索框这一部分与上下其它元素的空白距离可以随着窗口大小变化,希望本文能帮助到大家。

效果实现

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>垂直伸缩</title>
    <style type="text/css">
        *{
            padding: 0;
            margin: 0;
        }
        body,html{
            height: 100%;
        }
        .content{
            min-width: 810px;
            min-height: 600px;
            height: 100%;
            border: 1px dashed green;
        }
        .wrap{
            width: 100%;
            height: 191px;
            border: 1px solid blue;
            position: relative;
            top: 38.2%;
        }
        .wrap-content{
            width: 100%;
            height: 191px;
            background-color: red;
            position: relative;
            top: -191px;
        }
    </style>
</head>
<body>
    <p class="content">
        <p class="wrap">
            <p class="wrap-content">
            </p>
        </p>
    </p>
</body>
</html>

分析

利用的原理:

百分比值的计算方式:实际值 = 具有确定宽高的祖先元素的宽高 * 百分比值。默认情况下,块级元素的宽为100%,高度则是根据内容来计算。所以如果祖先元素没有确定了高度的,那么百分比值也无法确定,它的值会被设置为0。

如果设置了html元素的高度为height: 100%;那么html元素的高度会随着viewport的高度改变。

相关推荐:

关于CSS中relative 特性

css样式中position属性absolute以及relative水平居中

css position属性中:absolute与relative的区别

以上就是css使用relative模仿百度首页top的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行