0
的Airbnb網站上擁有一個整潔的形式有三種控制直列:內嵌水平表在引導
我試圖複製這一點,但我的形式似乎並沒有被塑造起來,儘管使用Bootstrap列。
我的代碼是
<div className="btn-group btn-group-justified" role="group" aria-label="...">
<div className="col-md-3 col-xs-12 col-sm-12">
<Geosuggest
fixtures={fixtures}
inputClassName="form-control"
onFocus={() => this.onFocus()}
onBlur={(value) => this.onBlur(value)}
onChange={(value) => this.onChange(value)}
onSuggestSelect={(suggest) => this.onSuggestSelect(suggest)}
location={new google.maps.LatLng(53.558572, 9.9278215)}
radius="20"
/>
</div>
<div className="col-md-3 col-xs-12 col-sm-12">
<DateRangePicker
{...this.props}
onDatesChange={this.onDatesChange}
onFocusChange={this.onFocusChange}
startDatePlaceholderText='Llegada'
endDatePlaceholderText='Salida'
focusedInput={focusedInput}
startDate={startDate}
endDate={endDate}
minimumNights={0}
className="form-control"
/>
</div>
<div className="col-md-3 col-xs-12 col-sm-12">
<select className="form-control" id="sel1">
<option>1 persona</option>
<option>2 personas</option>
</select>
</div>
<div className="col-md-3 col-xs-12 col-sm-12">
<button className="btn btn-default">Buscar</button>
</div>
</div>
它仍然沒有像引用的形式(airbnb)分組。 http://i.imgur.com/QjBDJ1k.png – Serenity
它應該是這樣http://i.imgur.com/eLGDGhO.png。 – Serenity
看看它們的表單來源,它只使用Bootstrap網格,而不是表單樣式。你不能單獨使用Bootstrap來複制它。 – Crowes