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

通过css继承来实现气泡小三角

时间:2018-09-01 00:49:05      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:ima   style   实现   utf-8   before   dia   bubuko   tle   round   

<!DOCTYPE html>
<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title></title>
    <style media="screen">
      .callout{position: relative;
        width: 100px;
        height: 50px;
        background: #f00;
      }
      .callout::before{
        content: "";
        position: absolute;
        top: -.4em; left: 1em;
        padding: .35em;
        background: inherit;
        border: inherit;
        border-right:0;
        border-bottom:0;
        transform: rotate(45deg);
      }
    </style>
  </head>
  <body>
    <div class="callout">
      Only
    </div>
  </body>
</html>

技术分享图片

 

通过css继承来实现气泡小三角

标签:ima   style   实现   utf-8   before   dia   bubuko   tle   round   

原文地址:https://www.cnblogs.com/ron123/p/9568850.html

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