Check out what I'm attempting here
I am trying to keep an element in the center and have another element hug the left side of it.
Essentially, I want the leftmost position of the left div to be right: calc(50% - 200px - (left's width));
The issue arises when using right: 50%; it works but right: calc(50% + 100px) does not.
How can I ensure that the div with the "left" class always stays adjacent to the center element?
<div class="left"> hug this center element </div>
<div class="middle"> this stays in the middle</div>