添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
沉着的红烧肉  ·  python ...·  1 年前    · 
失眠的荒野  ·  JTS ...·  2 年前    · 
<div class="parent-container">
<button class="bt-read">续读</button>
</div>
.parent-container{
margin-left: 20rpx;
/* 父容器必须是相对定位,子容器的绝对定位才能达到预想效果 */
position: relative;
width: 100%;
padding-top: 38rpx;
}
.bt-read{
/* 绝对定位只有配合父容器的相对定位,才能达到预想效果 */
position: absolute;
right: 76rpx;
top: 47rpx;
}

上面代码就演示了 续读按钮 父容器 右上角 显示