Not sure if you are using this locally:
float:left;<!-- img setup with border -->
...but you can't use HTML comments <!-- --> inside the style block. You need to use CSS comments /* */ instead.
If you fix that, margin-bottom should work.
All of that said: unless you are specifically wanting to learn float-based layouts you should really be doing this with flexbox instead .