这是我网站上的提交按钮:
<input type="submit" class="myticket-schedule-btn" value="<?php esc_attr_e( 'Search', 'myticket' ) ?>">
这是图像: The Search Button
为什么不出现在中间?如何编辑它以使其垂直对齐?
我尝试过输入style="vertical-align: middle;"
和style="text-align: center;"
,但都不起作用。
答案 0 :(得分:0)
Remove any height from the input and use padding for the input. For example... .myticket-schedule-btn {padding:10px 20px;}
答案 1 :(得分:0)
I added padding: 0px; and it was resolved.
<input type="submit" class="myticket-schedule-btn" style="padding: 0px;" value="<?php esc_attr_e( 'Search', 'myticket' ) ?>">