button position absolute not working as expected

后端 未结 7 1310
礼貌的吻别
礼貌的吻别 2021-02-20 05:49

Can anyone explain why this button is not absolute-positioned to the right? I would expect it to be 3px from every edge.

相关标签:
7条回答
  • 2021-02-20 06:39
    .wrapper {
        height: 300px;
        width: 300px;
        background-color: #f33;
        position: relative;
    }
    
    .wrapper button {
        position: absolute;
        top: 3px;
        bottom: 3px;width:97.5%;
        right: 3px;
    }
    

    Try this.

    0 讨论(0)
提交回复
热议问题