I am trying to create a 2 column grid, with literally a 50% with no margins or padding.
How do I achieve this with Bootstrap 3 I tried this but end up with negative
You'd need to override the negative margins from the .row in large screens either directly or with a custom class
.row
@media (min-width: 768px){ .row { margin-right: 0; margin-left: 0; } }
Updated fiddle