Looking to create a div using bootstrap but facing an issue.
The challenge is setting a specific margin on the left and right sides of the div. When I use col-md-10, the margin exceeds 10px on wider screens.
Here's what I'm aiming for:
<div class="col-md-offset-1 col-md-10">
//contents...
</div>
-------------------------------------
| --------- div --------------
|10px margin 10px margin
| | |
| | |
| -------------------------------
-------------------------------------
Any suggestions on how to resolve this issue? Thanks in advance!