Skip to content Skip to sidebar Skip to footer

Bootstrap Span And Input Full Width In The Same Line

How can I put in the same line a span and an input with a full width for both elements?
Description

Solution 1:

Give white-space:nowrap to the container of both elements:

CSS:

.col-xs-12 {
    white-space: nowrap;
}

Demo:http://jsfiddle.net/GCu2D/1179/

Post a Comment for "Bootstrap Span And Input Full Width In The Same Line"