検索ボックス内に検索ボタンを実装したいのですが、便利だと思います:Bingのような検索ボックス内の検索ボタン
しかし、サイトにコードを配置すると、期待どおりに表示されませんでした。何が問題なのですか?
これがコードです
HTML
<input type="text" id="q" />
<input type="button" id="b" value="Search" />
CSS
#q, #b {
margin: 0
}
#q {
padding 5px;
font-size: 2em;
line-height: 30px
}
#b {
/* image replacement */
text-indent: -99999px;
width: 30px;
height: 30px;
display: block;
background: gray url(button.png) 0 0 no-repeat;
}