I have this, but I feel 4 is too big for my sidebar width and 3 is too small (it has to add up to 12).
6条回答 北海茫月 (楼主) 2020-12-05 02:45 you can customize bootstrap stylesheet, as in: .col-md-8{ width: /*as you wish*/; } Then, set the media query for that too, as in: @media screen and (max-width:768px){ .col-md-8{ width:99%; } } 0 讨论(0) 查看其它6个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
you can customize bootstrap stylesheet, as in:
.col-md-8{ width: /*as you wish*/; }
Then, set the media query for that too, as in:
@media screen and (max-width:768px){ .col-md-8{ width:99%; } }