css position Absolute理解

作者: 三不小青年 | 来源:发表于2018-06-11 11:04 被阅读25次

    脱离文档流,不占据文档流空间。因此可常常用于背景,上标等(不要采用margin -值的做法)

    其中4 , 16的样式

    .order-category-item-up-text{

      position: absolute;

      margin-left: 25rpx;//相对父容器

      margin-top: -10rpx;

      border: 1rpx #fe0100 solid;

      border-radius: 50%;

      width: 30rpx;

      height: 30rpx;

      text-align: center;

      color: #fe0100;

      font-size: 20rpx;

      line-height: 30rpx;

    }

    相关文章

      网友评论

        本文标题:css position Absolute理解

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