margin
doesn’t work how you think it does, it adds an invisible gap outside the containing box of the element. It does not stick an element to a side. You can use margin-left: auto
to create a margin on the that automatically fills the remaining space though, then apply margin right to offset it from the right.
https://developer.mozilla.org/en-US/docs/Web/CSS/margin
Hope that helps