How to create a 5-column layout in Bootstrap 4?

Susan Sarandon
Release: 2024-10-26 01:39:02
Original
200 people have browsed it

How to create a 5-column layout in Bootstrap 4?

Bootstrap - 5 column layout

You want to achieve a 5 column full width layout using Bootstrap but haven't found a solution that suits your needs.

Bootstrap 4 offers a simple solution using the auto-layout grid. To create 5 equal, full-width columns, use the following code:

<code class="html"><div class="container-fluid">
    <div class="row">
        <div class="col">1</div>
        <div class="col">2</div>
        <div class="col">3</div>
        <div class="col">4</div>
        <div class="col">5</div>
    </div>
</div></code>
Copy after login

This solution works because Bootstrap 4 uses flexbox. To wrap the columns within the same row, use a clearfix break such as

or
every 5 columns.

For Bootstrap 4.4 and later, you can use the row-cols-5 class on the row:

<code class="html"><div class="container">
    <div class="row row-cols-5">
        <div class="col">
            X
        </div>
        <div class="col">
            X
        </div>
        <div class="col">
            X
        </div>
        <div class="col">
            X
        </div>
        <div class="col">
            X
        </div>
        <div class="col">
            X
        </div>
    </div>
</div></code>
Copy after login

The above is the detailed content of How to create a 5-column layout in Bootstrap 4?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!