zoukankan      html  css  js  c++  java
  • CSS卡券效果制作

    <p class="coupon">
     <span>10000</span>SWT优惠券
    </p>
    .coupon {
      width: 300px;
      height: 100px;
      line-height: 100px;
      margin: 50px auto;
      text-align: center;
      position: relative;
      background: radial-gradient(circle at right bottom, transparent 10px, #00BFFF 0) top right /50% 51px no-repeat,
      radial-gradient(circle at left bottom, transparent 10px, #00BFFF 0) top left / 50% 51px no-repeat,
      radial-gradient(circle at right top, transparent 10px, #00BFFF 0) bottom right / 50% 51px no-repeat,
      radial-gradient(circle at left top, transparent 10px, #00BFFF 0) bottom left / 50% 51px no-repeat;
      filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .2));
    }
    .coupon span {
      display: inline-block;
      vertical-align: middle;
      margin-right: 10px;
      color: red;
      font-size: 50px;
      font-weight: 400;
    }

    10000SWT优惠券

  • 相关阅读:
    Triangle
    Remove Duplicate Letters
    array 并不会被默认初始化
    Unique Binary Search Trees
    有些障碍的 unique path
    unique paths
    最长增长序列的长度(LIS)
    极其简单的复数类,只是不想再推演一遍复数四则运算
    安卓_11
    安卓_10
  • 原文地址:https://www.cnblogs.com/swt-axios/p/14859326.html
Copyright © 2011-2022 走看看