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
The unexpected horizontal overflow seems to be caused by the float: left of the buttons in the btn-group. For me it was unexpected that btn-group contains floating elements. If floating is really needed, it would be good to include the clearfix in btn-groups. It seems like adding the clearfix class to btn-group doesn't solve the issue in itself.
How could I solve this table cell layout issue?
Is there any way to avoid floats in btn-gruops in future versions? I mean for example input-groups are implemented without floats, so btn-groups might have an alternative implmentation too.
The text was updated successfully, but these errors were encountered:
You appear to have posted a live example (http://s.bootply.com/render/wWM2a9R8Mt), which is always a good first step. However, according to the HTML5 validator, your example has some validation errors, which might potentially be causing your issue:
line 5, column 9 thru column 30: A document must not include both a meta element with an http-equiv attribute whose value is content-type, and a meta element with a charset attribute.
You'll need to fix these errors and post a revised example before we can proceed further.
Thanks!
Please check this demo to reproduce the issue: http://www.bootply.com/wWM2a9R8Mt#
The unexpected horizontal overflow seems to be caused by the
float: left
of the buttons in thebtn-group
. For me it was unexpected thatbtn-group
contains floating elements.If floating is really needed, it would be good to include theIt seems like adding theclearfix
inbtn-group
s.clearfix
class tobtn-group
doesn't solve the issue in itself.How could I solve this table cell layout issue?
Is there any way to avoid floats in
btn-gruop
s in future versions? I mean for exampleinput-group
s are implemented without floats, sobtn-group
s might have an alternative implmentation too.The text was updated successfully, but these errors were encountered: