2017-05-15 42 views
0

正如你可以看到這個圖片上有一個上邊框(與深度效果),我需要刪除(我只是想有書面上的橙色背景的文本,沒有效果):如何刪除Bootstrap/css中的跨度邊界深度?

enter image description here

下面是代碼:

<div class="form-group col-lg-3"> 
    <div> 
     <label for="message"><br></label> 
     <div> 
     <span class="form-control hide" id="error-msg" style="color: red; background-color:#ED7D31;">different passwords</span> 
     </div> 
    </div> 
    </div> 

我試圖在跨度風格屬性添加"border: none""border: 0px",但沒有任何變化。任何想法 ?

謝謝

+0

你需要一個'邊界top',沒有額外的深度,或者你不想讓'邊境top'呢? –

回答

0

問題不在於邊界。跨度頂部有一個箱形陰影。 下面的代碼刪除

-webkit-box-shadow: none; 
-moz-box-shadow: none; 
box-shadow: none;