I'm struggling to get a specific column width using Bootstrap columns.
From the above, I want to maintain the label column width but the textbox column needs to extend all the way to the end.
CodePudding user response:
you have added
you should try something like this:
<div >
<div >
<div >label</div>
<div >textbox</div>
</div>
</div>
CodePudding user response:
Here you go...
You need to change <div >
to <div >
if you want to achieve this. You might be confused because 4 columns 8 columns = 12 columns, but these two elements will not take full-window width because they are limited with <div >
.