You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a column-based width for an input inside of a div with class row-fluid, such as
<div class="row-fluid">
<input class="span4">
and collapsing down to a tablet or phone-sized browser window, the input field defaults to width:auto, which is really small and static, regardless of which span width was indicated. If you change the code to
<div class="row">
<input class="span4">
the input expands to 100% width on smaller screens, as it should, and as it does on Twitter Bootstrap's docs.
The text was updated successfully, but these errors were encountered:
As I've worked with this more, it basically seems that using the column-sizing feature breaks form layouts entirely when used with a responsive layout.
When using a column-based width for an input inside of a div with class row-fluid, such as
and collapsing down to a tablet or phone-sized browser window, the input field defaults to width:auto, which is really small and static, regardless of which span width was indicated. If you change the code to
the input expands to 100% width on smaller screens, as it should, and as it does on Twitter Bootstrap's docs.
The text was updated successfully, but these errors were encountered: