前提・実現したいこと
inputの立体感を無くしたい
発生している問題・エラーメッセージ
Airbnbサイトの模写をしています。 inputの立体感が出て、横のアイコンとぎこちなさが生まれています。 文字を打つときにアイコンは消したくないのでinputタグの中に入れていません。
該当のソースコード
HTML
1<form class="form-inline"> 2 <div class="input-group align-item-center"> 3 <div class="input-group-prepend"> 4 <span class="input-group-text border-0" id="basic-addon1"><i class="fa fa-search"></i></span> 5 </div> 6 <input type="text" class="form-control" placeholder="探す" aria-label="探す" aria-describedby="basic-addon1" size="50"> 7 </div> 8 </form> 9 10--------CSS------------ 11 12.input-group { 13 height: 48px; 14 border: 1px solid #ebebeb; 15 border-radius: 4px; 16 box-shadow: 0 1px 2px lightgrey; 17} 18 19.form-control { 20 border: none!important; 21 padding: 0; 22 margin: 5px 0; 23 box-shadow: none!important; 24 z-index: 0; 25} 26 27 28.input-group-prepend { 29 padding: 0; 30} 31 32.input-group-prepend { 33 display: flex; 34} 35 36.input-group-text { 37 background-color: #fff; 38 font-size: 18px; 39}
試したこと
inputタグに対して border: noneやsolid 0px はダメでした。
box-shadow: noneもダメでした。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。