在创建自定义树时,我使用的是图像后跟标签。问题是当标签溢出时它会在图像下方,而我需要它与文本的起点对齐。我如何用 css 做到这一点。
示例代码:
<html>
<body>
<div class="maindivclass">
<ul>
<li id="TR_239984" class="liclass">
<img src="http://dummyimage.com/32x16" class="imgclass" />
<label class="labelclass">This is a long text to show wrapping of the text from the box edge</label>
</li>
<li id="TR_239985" class="liclass">
<img src="http://dummyimage.com/32x16" class="imgclass" />
<label class="labelclass">This is another long text to show wrapping of the text from the box edge</label>
</li>
</ul>
</div>
</body>
</html>
请在此处查看样本
我需要让它看起来像:http: //imgur.com/Yp9hC
我需要单独的图像和文本,因为单击其中一个会做 2 件不同的事情,所以不能使用背景图像作为列表样式,除非它也可以使用它。
谢谢