我試圖把一個箭頭從圖像跨度的左側。我使用圖像的空白區域併爲其分配背景圖像。但仍然沒有顯示圖像。背景不工作圖像上的空白跨度
ul {
margin: 0px 0px 0px 20px;
padding: 0;
list-style-type: none;
}
li {
\t margin-bottom: 5px;
\t margin-top: 5px;
}
.expand-icon
{
\t width: 15px;
\t vertical-align: middle;
\t float: left;
\t line-height: 1.5em;
\t height: auto;
\t background: url("https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-arrow-right-128.png");
}
.edit-list-span {
\t border: 1px solid #3465a4;
padding: 2px 5px 2px 5px;
background: #fff;
line-height: 1.5em;
display: block;
overflow:hidden;
}
<ul class="myUL">
<li class="edit-list">
<span class="expand-icon"></span>
<span class="edit-list-span" contenteditable="true">Test Span</span>
</li>
</ul>
.expand-icon
是其中我試圖把圖像,但其不顯示的跨度。請幫我解決這個問題。
我想讓箭頭超出文本範圍,因此請使用單獨的跨度。但根據你第一次使用flex的建議,當我這樣做時,其他UI正在完全改變。我在這裏放了一小段代碼,其中我的代碼重複了這麼多單元。 –
@ShashwatKumar片段在哪裏? –
我的意思是在這個問題中,代碼片段是我的代碼的一部分。 –