cakephp3-bootstrap-helpers icon indicating copy to clipboard operation
cakephp3-bootstrap-helpers copied to clipboard

horizontal form with form-control-sm [v4]

Open jaynarayan89 opened this issue 7 years ago • 1 comments

Is there any option to create a horizontal form with small-sized input?

I want to use something like this

<div class="form-group row">
     <label for="smFormGroupInput" class="col-sm-2 col-form-label col-form-label-sm">Email</label>
     <div class="col-sm-10">
       <input type="email" class="form-control form-control-sm" id="smFormGroupInput" placeholder="[email protected]">
     </div>
   </div>

jaynarayan89 avatar Dec 01 '17 11:12 jaynarayan89

There is no built-in way to add these class — You need to use the class option but unfortunately you will have to create the label and the input separately.

Holt59 avatar Dec 01 '17 12:12 Holt59