Sat, 2016-04-23 20:50
https://jsfiddle.net/er2z684c/
Before I added my Location is looked okay but it's pushed my first item down now?
Mon, 2016-04-25 16:39
#1
Not tested
I suspect you're experiencing margin collapse. Try adding {padding-top: 1px;} to the LI or DIV element. Or, you may replace the 50px top margin with 50px top padding on the parent. If I'm right, the H2 collapses through div.card-block and .card-block's margin collapses through LI.
See https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Box_Model/Mastering_margin_collapsing
cheers,
gary
Tue, 2016-05-03 05:42
#2
You can solve this easily by
You can solve this easily by adding float: left; on the .card
https://jsfiddle.net/er2z684c/11/ <-- updated