このような検索窓を作ったのですが、検索ボタンの文字が真ん中にきません。
どうしたら真ん中に来ますか?
flexやpaddingなど色々試してみたのですが、今度はどれが必要でどれが不要なのかも分からなくなってしまったので、
そのご指摘も頂けると助かります。
よろしくお願いします。
<form class="mv-input" method="get"> <input class="search-input" type="text" placeholder="地名、業界、会社名などを入力(例:東京駅)"> <input class="search-btn" type="submit" value="検索"> </form>
.mv-input { box-shadow:0 2px 4px rgba(0,0,0,.28); border-radius: 8px; display: flex; margin-top: 8px; max-width: 480px; } .search-input { font-size:16px; display:inline-block; height:50px; padding:8px; outline:none; width:100%; border:2px solid black; border-right:none; border-radius: 8px 0 0 8px; } .search-btn { display:flex; align-items: center; justify-content: center; line-height: 1.3; cursor: pointer; padding:0 ; font-size:32px; height:50px; padding:8px; outline:none; width:100px; border:2px solid black; border-radius: 0 8px 8px 0; background-color:#ffcc00; box-sizing:border-box; }