我試圖使用Bootstrap和驗證庫(一個jQuery插件)稱爲Validetta(http://lab.hasanaydogdu.com/validetta/)添加字段驗證到「聯繫我們」窗體。如何調整Bootstrap表單域的工具提示的z-index?
雖然實現了表單和驗證,但我注意到工具提示的z-index有問題,導致它顯示在下一個表單字段下。
如果我正在處理普通的HTML和CSS,我認爲答案會更清楚一些,但對於Bootstrap,我不知道什麼樣的神祕主義正在進行,並且無法找到關於如何處理以最佳實踐方式解決這個問題。
我知道Validetta被添加表單域後<SPAN>
並應用自定義CSS類的,我可以很容易地修改,重寫或追加。在其他情況下,我還讀到,可以使用工具提示SPAN
上的z-index
和position
以及它的一個或多個父元素來解決此問題...但我所有的快速測試和試用都沒有期望的影響。
這裏的上面顯示錶單域的呈現HTML:
<div class="form-group has-feedback has-error">
<label class="control-label" for="inputFromName">Your Name</label>
<input type="text" class="form-control" id="inputFromName" name="fromName" placeholder="Your Name Here" data-validetta="required" data-vd-message-required="This field is required!">
<span class="validetta-bubble validetta-bubble--bottom">This field is required!<br></span>
</div>
任何幫助,將不勝感激!
請參閱本答案[Tooltip](https://stackoverflow.com/questions/14386759/z-index-of-hover-tooltip-with-css) –