我試圖通過填充左邊界來從邊框填充空間,但是當我使用<br />
來包裝已創建的新行上取消的填充時。 這裏是我的代碼:在新行上使用填充和填充取消自己
HTML:
<div class="block1">
<br />
<span class="text1">
test test test test test test test test test test test test test test test test test test test test test test test test<br /> test test test test test test test test test test test test test test test test test test test test test
</span>
</div>
CSS:
.block1{
background: #e1d9d9;
width: 600px;
height: 500px;
margin: 100px 70px 0;
border: 1px solid #000;
border-radius: 25px;
box-shadow: 5px 5px 20px #888888;
}
.text1{
padding-left: 20px;
}
小提琴:
http://jsfiddle.net/cy7x9j6g/3/embedded/result/
如何解決新行問題的填充問題?
不要使用break標籤間距 – 2014-10-08 12:18:22
添加'顯示:inline-block的;''到.text1' - http://jsfiddle.net/nugc6a6x/ – Anonymous 2014-10-08 12:19:15
@Paulie_D所以,我應該怎麼用?如果你仔細觀察,你會看到自動包裝也是造成這個問題 – ExCluSiv3 2014-10-08 12:19:47