zoukankan      html  css  js  c++  java
  • 基本css拼图形

    关闭按钮:

    <em class="close"></em>
    
      .close {
    		 16px;
    		height: 16px;
    		text-align: center;
    		display: block;
    		color: #28c54d;
    		/*background-color: #DEF6E4;
    		// background-color: #ffffff;
    		// border: solid 2px #caf0d3; /*!no*/
    		border: solid 2px #fff; /*!no*/
    		font-style: normal;
    		font-size: 20px; /*!px*/
    		line-height: 80px;
    		position: absolute;
    		bottom: 2px;
    		right: 0px;
    		z-index: 1000;
    		/*// margin: auto auto 50px auto;*/
            border-radius: 50%;
            background: #b0b0b0;
        }
        
        .close:before {
            content: "";
            position: absolute;
             4px;
            /* height: 1px; */
            display: block;
            background-color: #fff;
            transform: rotate(45deg);
            top: 5px;
            left: 3px;
            border: solid thin #fff;
            border-radius: 1px;
        }
        .close:after {
            content: "";
            position: absolute;
             4px;
            /* height: 1px; */
            display: block;
            background-color: #fff;
            transform: rotate(-45deg);
            top: 5px;
            left: 3px;
            border: solid thin #fff;
            border-radius: 1px;
        }
    
  • 相关阅读:
    代码走读 airflow 2
    sql 查询相关
    控制你的鼠标和键盘
    TODO
    二进制流的操作收集
    daterangepicker-双日历
    datetimepicker使用
    ADO执行事务
    动态添加表sql
    执行带返回值的存储过程
  • 原文地址:https://www.cnblogs.com/this-xiaoming/p/9554724.html
Copyright © 2011-2022 走看看