Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
963 views
in Technique[技术] by (71.8m points)

css - How do I disable the "responsive" grid in bootstrap?

So the responsive grid for bootstrap looks horrible for my site. When you shrink the window, everything gets smushed together and the navbar collapses into three rows (I disabled the responsive-collapsing navbar).

I tried deleting bootstrap-responsive.css but it still does that "fluid live grid collapsing" thing. It's driving me crazy.

How can I set a minimum width for the navbar and the entire page? So that everything doesn't get pushed together and you have to use the horizontal scroll bar to navigate the page.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Removing the bootstrap-responsive.css should provide you the behavior which you desire. All the span* classes are explicit width in regular Bootstrap as long as you are using row and not row-fluid in the parent containers. The row class does not provide any width constraints, and none are made on the <body> either. However, the container class does have an explicit width of 940px in standard bootstrap.css.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...