navbar の検索ボックスに座標を割り当てるにはどうすればよいですか。写真のような結果が必要です。
写真:
ブートストラップ ナビゲーションバーと一緒にグリッド システムを使用できます。
座標を与えるとはどういう意味ですか? 検索入力をナビゲーションバー内に移動したい場合は、入力要素のスタイルを簡単に変更できます-
position: fixed;
right: 18%; // depends on your requirement
top: 3%; // depends on your requirement
style="width: 310px;"
このコードは、div に id を指定してスタイルシートに個別に記述することによって、または一緒に記述することができます。
#your_id {
position: fixed;
right: 18%; // depends on your requirement
top: 3%; // depends on your requirement
}
div/input タグにこの ID を指定します
<input id="your_id" class="form-control " placeholder="Поиск" style="position: fixed; right: 18%; top: 3%; width:310px" type="text">
お役に立てれば。