I\'m having a difficult time finding specific info for my case. I\'d like to distribute 3 image thumbnails across a 940px div in order to line up with the rest of my content
The answer is very simple, just use:
.container { display: flex; justify-content:space-between; }
That's all!