码迷,mamicode.com
首页 > Web开发 > 详细

002_x号Css实现及弹性布局

时间:2020-05-25 22:29:50      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:png   height   ice   代码   edit   body   name   alt   content   

一、效果如下:

技术图片

二、代码

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }
        .close {
            position: relative;
            display: inline-block;
            top: 50%;
            margin-top: -10px;
            width: 20px;
            height: 20px;
            background-color: rgb(23, 159, 196);
        }

        .close:before,
        .close:after {
            position: absolute;
            left: 10px;
            content: ‘ ‘;
            height: 21px;
            width: 2px;
            background-color: red;
        }

        .close:before {
            transform: rotate(45deg);
        }

        .close:after {
            transform: rotate(-45deg);
        }

        #selectedItem {
            display: flex;
            float: left;
            justify-content: left;
            width: auto;
            height: 32px;
            line-height: 32px;
            border: 2px solid red;
        }
    </style>
</head>

<body>
    <div id="selectedItem">
        苹果<div href="#" class="close"></div>
    </div>
    <div id="selectedItem">
        苹果<div href="#" class="close"></div>
    </div>

</body>
</html>

  

002_x号Css实现及弹性布局

标签:png   height   ice   代码   edit   body   name   alt   content   

原文地址:https://www.cnblogs.com/arun-python/p/12961121.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!