When attempting to set the margin on an object to 20% with a maximum margin of 200px, I experimented with various methods:
margin-left: calc(min(200px, 20%));
and
max-margin-left: 200px
However, neither property proved to be valid. Is there an alternative approach to achieving this?