简体   繁体   中英

How to set a minimum width to a webpage in twitter bootstrap 2.3.2

Would it be possible to set a minimum width on a responsive layout where it would not re-size the webpage beyond that specified point. For example set the width to be 468 px Min and add scroll bars to any devise/browser which has any width less than that ?

  • My site breaks up in mobile phones after a certain width , almost impossible to replicate the same site on desktop when it becomes too small .

Add your own CSS file with the following:

.container-fluid
{
    min-width: 468px !important;
}

Place it to load after the bootstrap CSS files.

Bootstrap 2.3.2 docs

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM