button position absolute not working as expected

后端 未结 7 1320
礼貌的吻别
礼貌的吻别 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:28

    You can use calc to get the exact width minus the padding you get from the positioning:

    width: calc(100% - 6px);
    

    JSFiddle

提交回复
热议问题