Bootstrap 4, how to make a col have a height of 100%?

后端 未结 7 663
难免孤独
难免孤独 2020-12-13 04:00

how can I make a column take up 100% height of the browser w bootstrap 4?

See the following: https://codepen.io/johnpickly/pen/dRqxjV

Note the yellow div, I

相关标签:
7条回答
  • 2020-12-13 04:58

    I solved this like this:

        <section className="container-fluid">
                <div className="row justify-content-center">
    
                    <article className="d-flex flex-column justify-content-center align-items-center vh-100">
                            <!-- content -->
                    </article>
    
                </div>
        </section>
    
    0 讨论(0)
提交回复
热议问题