Home > Mobile >  Bootstrap - Add a widget to side of the page
Bootstrap - Add a widget to side of the page

Time:02-04

I wanna add a simple text box to side of my page.

Img

I have a table. So when the widget has added the table has to be decrease it's width. Thanks in advance!

                                                                                                   .                                                                                                                                                                                                                                                                                  

CodePudding user response:

Probably you need to create a layout (https://getbootstrap.com/docs/5.2/forms/layout/) with properly setup grid system and have a place for your widget. So checkout the layout and grid system in bootsrap first to understand.

CodePudding user response:

<div >

  <div >
    Your table
  </div>

  <div >
    Widget here
  </div>

</div>
  • Related