How can I align all my input fields (image) to the same vertical line?
I tried using the vertical-align css property and a sass mixin I found (see below), but neither seemed to work.
@mixin vertical-align($pos) {
position: $pos;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
Is there a simple solution for this? I've been struggling with it for half an hour now...
Here's a fiddle that includes the css & html code.