我想要一个 2 列的图像网格和矩阵中的不同文本,不知道如何使用 LI & css 或类似方法来实现。请提供概念或良好资源的帮助。
(网格将用于填充“假”增强组合框。)
| o o | |
| ¨ | This text verically centered |
| --- |
------------------------------------------------
| o o | |
| ¨ | This text verically centered |
| --- | |
到目前为止的代码 - 没有正常工作的 valign:
<div class="list2" style="width:400px;">
<ul>
<li>
<div style="float:left;border:1px solid #000;width:400px;">
<img style="float:left;" src="imgcache/91427.jpg" height="60"/>
<p style="margin-left:20px;float:left;">I want to be vert. centered.</p>
</div>
<div style="clear:both;"></div>
</li>
<li>
<div style="float:left;border:1px solid #000;width:400px;">
<img style="float:left;" src="52352.jpg" height="60"/>
<p style="margin-left:20px;float:left;">I want to be vert. centered.</p>
</div>
</li>
</ul>
</div>