bootstrap - input date type cause form-control overlap each other -



bootstrap - input date type cause form-control overlap each other -

if decrease view area width, input date type cause form-control overlap each other test plunker

<div class="container"> <h4>date input type overlap issue</h4> <h4>please cut down view width</h4> <div class="row"> <div class="col-xs-6"> <div class="input-group"> <span class="input-group-addon">birth date</span> <input type="date" class="form-control" /> </div> </div> <div class="col-xs-6"> <div class="input-group"> <span class="input-group-addon">name</span> <input type="text" class="form-control"> </div> </div> </div> </div>

it expected show this

instead shows in chrome (overlapping date input)

would viewport have plenty width accommodate both input grouping in same line ?

try col-xs-12

twitter-bootstrap twitter-bootstrap-3 angular-ui-bootstrap

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -