美文网首页
Vue中卡片右上角状态设计

Vue中卡片右上角状态设计

作者: leslie1943 | 来源:发表于2020-07-09 11:25 被阅读0次

    code

     <div class="each-one-in-list">
        <div class="show-icon">进行中</div>
          <div class="show-signal"></div>
            <div class="main-title" title="test">
              <strong>
                    <span>公司名称测试 {{item}}</span>
                  </strong>
            </div>
        </div>
    
    .each-one-in-list {
      border: 1px solid #ebeef5;
      background-color: #fff;
      padding: 10px;
      height: 300px;
    }
    .show-icon {
        text-align: center;
        background-color: #5aaafa;
        color: #fff;
        float: right;
        font-size: 12px;
        margin-right: -18px;
        padding: 2px 5px 2px 5px;
        width: 79px;
    }
    .show-signal {
        border: 4px solid #939393 - 30;
        border-right: 4px solid transparent;
        border-bottom: 4px solid transparent;
        float: right;
        margin-right: -79px;
        margin-top: 24px;
        width: 0;
        height: 0;
    }
    

    效果

    image.png

    相关文章

      网友评论

          本文标题:Vue中卡片右上角状态设计

          本文链接:https://www.haomeiwen.com/subject/unyjcktx.html