■問題点
検索ボックスを作ったのだがpcとスマホで検索ボックスの表示が違くなってしまう
php
1<h4 class="sidebar-title"><span>Search</span></h4> 2<form role="search" method="get" action="<?php echo esc_url(home_url('/')); ?>" class="search" id="searchform"> 3 <label for="s"><?php _x('Search for:', 'label'); ?></label> 4 <input type="text" value="<?php echo get_search_query(); ?>" role="search" method="get" class="searchbox" name="s" id="s" placeholder="Search for"> 5 <input class="submit fa fa-2x" value="" type="submit" id="searchsubmit" value="<?php echo esc_attr_x('Search', 'submit button'); ?>"> 6</form>
scss
1form.search { 2 position: relative; 3 display: flex; 4 padding: 20px 0; 5 input { 6 position: absolute; 7 top: 0; 8 right: 30px; 9 background: 0 0; 10 height: 34px; 11 12 border: none; 13 14 &.searchbox { 15 width: 90%; 16 padding: 10px 0; 17 border: 1px solid #dfe6e9; 18 border-radius: 5px; 19 20 } 21 &.sumbit { 22 border: none; 23 background-color: transparent; 24 position: absolute; 25 right: 50%; 26 top: 50%; 27 transform: translateY(50%); 28 } 29 } 30 } 31 h3{ 32 font-size: 1.5rem; 33 margin-bottom: 10px; 34 } 35 .not-found-category__list{ 36 list-style: none; 37 li{ 38 margin-left: 10px; 39 40 } 41 }
■補足
pcはデベロッパーツールで見ているのですがpcでは正常です。
ですがiphoneで見ると写真みたいに崩れてしまいます。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/02 09:51
2020/09/02 10:00