In your Bootstrap grid layout, you're facing a challenge with spacing between columns. While the solution of using col-md-5 with pull-left and pull-right may result in too much space, a more nuanced approach is available.
Solution: Nest a Div Within Columns
Nest a div within each col-md-6 column and apply the desired margin and padding to the nested div. This approach maintains the structural integrity of the column while allowing for additional spacing within each one.
Code:
Widget 1
Widget 2
CSS:
.classWithPad {
margin: 10px;
padding: 10px;
}
With this solution, you can easily add the desired spacing to your columns without sacrificing the structural consistency of the grid layout.
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3