我對前端HTML/CSS相當陌生,並且使用Bootstrap來獲取我的網站頁面,並且看起來不錯並且響應迅速。不過,我有一個帶有輸入搜索框的頁面,並且希望它以頁面爲中心。這是我的HTML看起來像:垂直和水平對齊引導行第
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 60px;
}
/* for search bar */
.stylish-input-group .input-group-addon {
background: white !important;
}
.stylish-input-group .form-control {
border-right: 0;
box-shadow: 0 0 0;
border-color: #ccc;
}
.stylish-input-group button {
border: 0;
background: transparent;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<div id="imaginary_container">
<div class="input-group stylish-input-group">
<input type="text" class="form-control" placeholder="search" autofocus>
<span class="input-group-addon">
<button type="submit">
<span class="glyphicon glyphicon-search"></span>
</button>
</span>
</div>
</div>
</div>
</div>
</div>
我所希望做的是居中的頁面,類似於谷歌的網頁搜索框。有關我如何完成此任何想法?謝謝。
你的代碼已經在工作,你爲什麼覺得不工作?如果你的意思是在較小的窗口只需添加col-md-6和col-xs-6到你的div,然後分別col-md-offset-3和col-xs-offset-3 – Yaser