博客列表 >盒模型,定位与浮动-2018年8月16日

盒模型,定位与浮动-2018年8月16日

玩美者传媒的博客
玩美者传媒的博客原创
2018年08月19日 01:12:18576浏览

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>我的相对定位</title>
</head>
<style>
    .box1{
        width: 50px;
        height: 200px;
        background-color: #FC0107;
        position: relative;
        left: 200px;

    }
    .box2{
        width: 200px;
        height: 50px;
        background-color: #555555;
        position: relative;
    }
    .box3{
        width: 200px;
        height: 50px;
        background-color: #FFE80E;
        position: relative;
        left: 250px;
        top: -50px;
    }
    .box4{
        width: 50px;
        height: 200px;
        background-color: #39FF1B;
        position: relative;
        left: 200px;
        top: -50px;
    }
</style>
<body>
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
<div class="box4"></div>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

运行图

屏幕快照 2018-08-19 上午1.06.43.png

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议