https://i.sstatic.net/gKOWQ.png
What is the meaning of 'md' in the div tag above picture?
mx-auto: This sets the margin on the x-axis to auto, essentially centering the element horizontally.
ml-md-0: Does this set the left margin to 0?
mr-md-auto: Does this set the right margin to auto?
If options 1, 2, and 3 are correct, then aren't these classes redundant and conflicting with each other?
As per option 1, the margin is set to auto, but then in option 2 it specifies a margin of 0 again.
Could someone please explain the functionality of these three bootstrap classes?