美文网首页
CSS-小练习

CSS-小练习

作者: 测试探索 | 来源:发表于2022-06-15 20:04 被阅读0次

预期结果


image.png

index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
    <div class="div0">
        <div class="div1">
            <div class="div2">5</div>
            <img class = "img1" src = "../image/5.png">
        </div>
    </div>


</body>
</html>

index.css

.div0{
    width: 500px;
    height: 300px;
    position: relative;
    background-color: #667766;
    top: 150px;
    left: 300px;
}

.img1{
    width: 45px;
    height: 45px;
    position: absolute;
    bottom: 10px;
    right: 30px;
}

.div1{
    width: 300px;
    height: 200px;
    background-color: red;
    top: 60px;
    left: 80px;
    position: absolute;
}

.div2{
    width: 30px;
    height: 45px;
    background-color: blue;
    border-radius: 20px/30px;
    text-align: center;
    line-height: 45px;
    color: white;
    top: -10px;
    left: -10px;
    position: absolute;
}

相关文章

网友评论

      本文标题:CSS-小练习

      本文链接:https://www.haomeiwen.com/subject/wxbkmrtx.html