How do I center a form within Jumbotron - Bootstrap 4

前端 未结 2 1479
离开以前
离开以前 2021-01-20 01:38

I\'m completely new to Bootstrap so sorry if this is a silly question.

I am trying to center a form within a jumbotron: Everything in the jumbotron centers except th

2条回答
  •  温柔的废话
    2021-01-20 02:25

    All it really needs is a set width and an auto margin.

    width: 700px;
    margin: 0 auto;
    

    However, you can also use bootstrap rows and columns if you wish.

提交回复
热议问题