博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
html+css做的丝带标签
阅读量:5235 次
发布时间:2019-06-14

本文共 2104 字,大约阅读时间需要 7 分钟。

先上效果:

             

HTML:

  <div class="tag">

    <div class="tag-box">

      <div class="tag-content-box">

        <div class="tag-content">

          <span class="tag-content-line"></span>

          <span class="tag-content-text"> 2016.05.24 </span>

        </div>

        <div class="tag-tail top"></div>

        <div class="tag-tail bottom"></div>

        <div class="tag-tail below"></div>

      </div>

    </div>

  </div>

CSS:

  .tag {

      width: 100%;

      border-right: 1px solid #DDD;

      -moz-border-radius: 4px 0px 0px 4px;

      -webkit-border-radius: 4px 0px 0px 4px;

      border-radius: 4px 0px 0px 4px;

      float: left;

      clear: both;

      margin: 30px 0;

    }

  .tag-box {

      width: 100%;

      height: 50px;

      position: relative

    }

  .tag-content-box {

      position: absolute;

      color: #792f2f;

      top: 16px;

      left: 6px;

      border-left: solid 6px #f0807b;

    }

  .tag-content {

      font-size: 14px;

      line-height: 20px;

      height: 20px;

      padding: 5px 15px 5px 17px;

      color: #ffffff!important;

      background: rgba(255, 126, 121, 0.5);

    }

  .tag-content-line {

      border-left: solid 1px #fff;

      position: absolute;

      padding: 100% 0;

      left: 0;

      top: 0;

    }

  .tag-content-text {

      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.59);

    }

  .tag-tail {

      width: 0;

      height: 0;

      border-left: 16px solid rgba(240, 128, 123, 0.74);

      border-right: 0 none;

      position: absolute;

      right: -14px;

      border-left-color: rgba(240, 128, 123, 0.74);

    }

  .tag-tail.top {

      border-top: 0 solid transparent;

      border-bottom: 16px solid transparent;

      top: 0;

    }

  .tag-tail.bottom {

      border-top: 16px solid transparent;

      border-bottom: 0 solid transparent;

      bottom: 0;

    }

  .tag-tail.below {

      border-top: 0px solid transparent;

      border-bottom: 10px solid transparent;

      border-left: 0px solid transparent;

      border-right: 6px solid #d15952;

      top: 100%;

      left: -6px;

    }

转载于:https://www.cnblogs.com/Man-Dream-Necessary/p/5533990.html

你可能感兴趣的文章
android smack MultiUserChat.getHostedRooms( NullPointerException)
查看>>
不错的MVC文章
查看>>
IOS Google语音识别更新啦!!!
查看>>
[置顶] Linux终端中使用上一命令减少键盘输入
查看>>
BootScrap
查看>>
【Python学习笔记】1.基础知识
查看>>
梦断代码阅读笔记02
查看>>
selenium学习中遇到的问题
查看>>
大数据学习之一——了解简单概念
查看>>
Lintcode: Partition Array
查看>>
[Linux]PHP-FPM与NGINX的两种通讯方式
查看>>
Java实现二分查找
查看>>
架构图-模型
查看>>
黑马程序员_Java基础枚举类型
查看>>
UIImage 和 iOS 图片压缩UIImage / UIImageVIew
查看>>
ajax向后台传递数组
查看>>
疯狂JAVA16课之对象与内存控制
查看>>
[转载]树、森林和二叉树的转换
查看>>
django ORM创建数据库方法
查看>>
php7 新特性整理
查看>>