初めてFontAwesomeを利用してます。
CDNを4から5にしたらアイコン(虫めがね)が表示されなくなりました。
元々
html
1<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> 2 3<form method="get" action="#" class="search_container"> 4 <input type="text" placeholder="何かお探しですか?"> 5 <input type="submit" value="" > 6 </form> 7
変更
html
1<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"> 2<form method="get" action="#" class="search_container"> 3 <input type="text" placeholder="何かお探しですか?"> 4 <input type="submit" value="" > 5 </form> 6
###試したこと
valueのところを、
¥f002
など変えてみましたが同じでした。
どうすれば表示できるでしょうか?
分かる方教えて下さい。
###CSS追加
ご質問のおかげでfont-family:がバージョン4の指定だったと分かりました。
バージョン5の指定に変えてみました。
css
1.search_container{ 2 position: relative; 3 box-sizing: border-box; 4 border: 2px solid #ddd; 5 display: block; 6 /* margin: 3px 10px; */ 7 border-radius: 3px; 8 height: 2.3em; 9 /* width: 265px; */ 10 width: 100%; 11 /* overflow: hidden; */ 12 background-color: #fff; 13 input[type="text"]{ 14 width: 100%; 15 border: none; 16 height: 2.0em; 17 padding-left: 10px; 18 &:focus { 19 box-shadow: 0 0 12px 0 rgba(255,153,0,1); 20 border: 2px solid #FFF !important; 21 outline: 0; 22 } 23 } 24 input[type="submit"]{ 25 26 cursor: pointer; 27 font-family: 'Font Awesome 5 Free'; /*バージョン4はFontAwesome;*/ 28 border: none; 29 background: $mainColor2; 30 color: #fff; 31 position: absolute; 32 width: 3.5em; 33 height: 2.05em; 34 /* width: 50px; */ 35 /* height: 41px; */ 36 right: 0px; 37 top: 0; 38 outline : none; 39 text-align: center; 40 } 41} 42 43 44 45
もう少し調べてみます。
回答2件
あなたの回答
tips
プレビュー