ホームページ > 記事 > ウェブフロントエンド > HTMLで検索バーを定義する方法
#このチュートリアルの動作環境: Windows7 システム、html5 バージョン、DELL G3 コンピューター。HTML で検索バーを定義する方法: まず、ID 名ボックスを含む新しい div を作成し、次にその中に input タグと div タグを追加し、最後に CSS を使用してスタイルを設定します。
HTML で検索バーを定義する方法:
1. まず、検索ボックスを囲む ID 名ボックスを含む新しい div を作成します。2 、次に input タグと div タグを内部に追加し、1 つはテキスト入力用、もう 1 つはボタンとして使用します; 3. 最後に、css を使用してスタイルを設定します。<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Examples</title> <meta name="description" content=""> <meta name="keywords" content=""> <link href="" rel="stylesheet"> <style type="text/css"> #box{ width: 380px; margin: 30px auto; font-family: 'Microsoft YaHei'; font-size: 14px; } input{ width: 260px; border: 1px solid #e2e2e2; height: 30px; float: left; background-image: url(images/search.jpg); background-repeat: no-repeat; background-size: 25px; background-position:5px center; padding:0 0 0 40px; } #search{ width: 78px; height: 32px; float: right; background: black; color: white; text-align: center; line-height: 32px; cursor: pointer; } </style> </head> <body> <div id="box"> <input type="search" name="search" placeholder="请输入关键字"> <div id="search">搜索</div> </div> </body> </html>
関連する学習に関する推奨事項:
以上がHTMLで検索バーを定義する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。