亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

How to use the entire widescreen to display a web page? I'm using bootstrap
PHP中文網(wǎng)
PHP中文網(wǎng) 2017-06-26 10:49:47
0
2
886

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.

PHP中文網(wǎng)
PHP中文網(wǎng)

認(rèn)證高級(jí)PHP講師

reply all(2)
我想大聲告訴你

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.

<p class="container-fluid">
  <p class="row">
      <p class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</p>
      <p class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</p>
  </p>
</p>
伊謝爾倫

Replace class="container" with class="container-fluid"

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template