.form-control-static isn't the same height as .form-control
Created by: tompazourek
In Bootstrap 4 Alpha 4 the form-control-static isn't the same size as form-control.
See example: http://v4-alpha.getbootstrap.com/components/forms/#static-controls
- The
form-control-staticelement's height is 24 pixels plus 8 pixels vertical padding making 40 pixels of height. - The
form-controlelement's height is 20 pixels plus 8 pixels vertical padding plus 1 pixel border making 38 pixels of height.
The issue is that if I use form-control-static and form-control side by side (like in multi-column form layout), the result will not be aligned nicely.
In v3, the form-control-static and form-control were both the same height.
I'm using Chrome 53 right now.