How to use the entire widescreen to display a web page? I'm using bootstrap
PHP中文网2017-06-26 10:49:47
0
2
824
The following is an example. The red part corresponds to the current blank space of my website. I want to use this part of the space, that is, make the normal structure wider, but I don’t know how to do it.
Change the outermost layout element .container to .container-fluid to convert the fixed-width grid layout into a 100%-width layout.
Not only used for root elements, but also if you want 100% width inside.
See: http://v3.bootcss.com/css/#gr...
Please note that structures such as internal rows also need attention.
Replace
class="container"
withclass="container-fluid"