首页 > 其他 > 详细

【电商5】header shopcar

时间:2020-12-21 09:29:47      阅读:22      评论:0      收藏:0      [点我收藏+]
  • 盒子随内容变大

技术分享图片

html

        <div class="shopcar iconfont icon-gouwuche icon-zhankai1">
            我的购物车
            <i class="count">8000000</i>
        </div>

common.css


.shopcar {
    position: absolute;
    right: 60px;
    top: 25px;
    width: 140px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #dfdfdf;
    background-color: #f7f7f7;
}

.shopcar .count {
    position: absolute;
    top: -5px;         /*距离顶部距离*/
    left: 105px;      /*撑开是向右延伸的*/


    /*盒子随内容变大*/
    height: 14px;
    padding: 0 5px;           /*不是margin哦*/

    line-height: 14px;
    color: #fff;
    background-color: #e60012;
    border-radius: 7px 7px 7px 0;
}

【电商5】header shopcar

原文:https://www.cnblogs.com/icemiaomiao3/p/14166053.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!