我使用的是引導材質設計,當文本預先填充時,我的標籤與我的輸入文本重疊..(參考下面的屏幕截圖)。有沒有辦法可以防止標籤重疊?Bootstrap材質設計浮動標籤重疊輸入文字
我的代碼:
<div className="modal-body">
<div className="md-form">
<input type="text" className="form-control" defaultValue={ project.name } ref="name"/>
<label>Name</label>
</div>
<div className="md-form">
<input type="text" className="form-control" defaultValue={ project.description } ref="description"/>
<label>Description</label>
</div>
<div className="md-form">
<input type="text" className="form-control" defaultValue={ project.slug } ref="slug"/>
<label>Slug</label>
</div>
</div>
提前感謝!當輸入有效或聚焦
嗨 - 這會導致少一些重疊,但它仍然重疊.. –
早些時候,我假設你正在使用[fezvrasta材料設計庫(http://fezvrasta.github.io/bootstrap-material -設計/)。由於您正在使用[mdbootstrap](http://mdbootstrap.com/components/forms/)。你之前的語法是正確的。你可以在jsfiddle或codepen中複製你的問題嗎?我已經創建了codepen示例,在那裏一切正常。檢查codepen ** [鏈接](http://codepen.io/jpI/pen/QKKQpZ?editors=1100)** –
我也更新了我的答案.. –