我有這個jsfiddle,顯示我目前的代碼,但它並沒有爲我服務。我想刪除只覺我的文字需要刪除文字上的邊框
需要有像一些-------- -------文字
還需要整個邊框頂部,底部,左側邊框右側和背景顏色黃色應該保持不變,我知道應用邊框白色會做到這一點,但我不想爲文本顯示白色背景。
http://jsfiddle.net/1yb6jt1k/2/
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<div class="testing">
<ul>
<li>
<label for="name">Some text but the border cuts it</label>
</li>
</ul>
</form>
</div>
</div>
.testing{
margin:50px auto;
background:transparent;
border-radius:4px;
padding:10px;
}
.testing li{
display: block;
padding: 10px;
border:1px solid #000000;
margin-bottom: 0px;
border-radius: 4px;
}
.testing li > label{
display: block;
text-align: center;
margin-top: -20px;
margin-left: auto;
margin-right: auto;
width: 40%;
color: green;
background-color: transparent;
font-size: 14px;
}
您可以嘗試刪除該行:邊距:-20px ;.希望它會有所幫助。 –
爲什麼'margin-top:-20px;'? – undefined
如果沒有這個邊距,文本就會在li標籤內部對齊......我希望它向上移動 – Sana