IE8 inputのテキストフィールドで上下中央揃えにしたかったので
line-heightを使ってみるがうまくいかず
<input type="text" class="hoge" value="ほげほげほげほげ">
.hoge {
line-height: 30px;
}
仕方ないので上下paddingで代用
.hoge {
padding: 7px 0;
}
Go to list of users who liked
More than 5 years have passed since last update.
IE8 inputのテキストフィールドで上下中央揃えにしたかったので
line-heightを使ってみるがうまくいかず
<input type="text" class="hoge" value="ほげほげほげほげ">
.hoge {
line-height: 30px;
}
仕方ないので上下paddingで代用
.hoge {
padding: 7px 0;
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked