本文介绍了Twitter自举最小宽度在响应布局的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当分辨率小于时,是否有一种方法可以让引导程序不缩小元素:
Is there a way to tell bootstrap to not shrink the elements when the resolution is smaller than:
/* Portrait tablet to landscape and desktop */.
@media (min-width: 768px) and (max-width: 979px) { ... }
我想支持大型桌面和平板电脑屏幕,但没有响应下面的解决方案。
I want to support the large desktops and tablets screen, but nothing responsive below that resolution.
推荐答案
添加css属性您希望不会收缩的所有元素。
You can add the css property min-width
on all the elements you want not to be shrunk.
这篇关于Twitter自举最小宽度在响应布局的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!