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

案例- CSS 三角加强

时间:2019-10-25 13:04:30      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:title   div   center   htm   radius   ack   top   ali   style   

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
    <style>
      .price {
        width: 180px;
        height: 30px;
        border: 1px solid pink;
        border-radius: 5px;
        line-height: 30px;
        text-align: center;
        font-size: 14px;
      }
      .discount {
        position: relative;
        float: left;
        width: 100px;
        height: 100%;
        background: pink;
      }
      em {
        position: absolute;
        top: 0;
        right: 0;
        border-color: transparent white transparent transparent;
        border-style: solid;
        border-width: 30px 15px 0 0;
      }
      del {
        font-size: 12px;
        color: gray;
      }
    </style>
  </head>
  <body>
    <div class="price">
      <span class="discount">
        ¥1499
        <em></em>
      </span>
      <del>¥2532</del>
    </div>
  </body>
</html>

 

案例- CSS 三角加强

标签:title   div   center   htm   radius   ack   top   ali   style   

原文地址:https://www.cnblogs.com/qtbb/p/11737191.html

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