作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我想让我的复选框像网格一样对齐,看起来更干净,占用的空间更少。但我似乎无法将它与我的图像对齐,而且我在间距方面也遇到了问题。
<table>
<tr>
<td>
<img src="images/fb.png" height="40px" width="40px">
<input type="checkbox" name="engine" id="engine" value="google">
</td>
</tr>
<tr>
<td>
<img src="images/twit.png" height="40px" width="40px">
<input type="checkbox" name="engine" id="engine" value="yahoo">
</td>
</tr>
<tr>
<td>
<img src="images/googplus.png" height="40px" width="40px">
<input type="checkbox" name="engine" value="bing">
</td>
</tr>
<tr>
<td>
<img src="images/link.png" height="40px" width="40px">
<input type="checkbox" name="engine" value="bing">
</td>
</tr>
<tr>
<td>
<img src="images/pin.png" height="40px" width="40px">
<input type="checkbox" name="engine" value="bing">
</td>
</tr>
<tr>
<td>
<img src="images/del.png" height="40px" width="40px">
<input type="checkbox" name="engine" value="bing">
</td>
</tr>
<tr>
<td>
<img src="images/stumb.png" height="40px" width="55px">
<input type="checkbox" name="engine" value="bing">
</td>
</tr>
<tr>
<td>
<img src="images/diig.png" height="40px" width="40px">
<input type="checkbox" name="engine" value="bing">
</td>
</tr>
</table>
这段代码只是一个 1 列表,我想把它分成三个并垂直对齐,我不擅长 css 所以请帮助我
最佳答案
您可以将宽度应用到您的单元格并执行类似以下操作(不是您想要实现的 100%,所以如果您需要我修改请告诉我)...
<td width="15%">
但如果你只想要 3 列,所有内容都对齐,请执行类似...
<table>
<tr>
<td>
<img src="images/fb.png" height="40px" width="40px">
</td>
<td>
<input type="checkbox" name="engine" id="engine" value="google">
</td>
<td>
Your third column content
</td>
</tr>
<tr>
<td>
<img src="images/twit.png" height="40px" width="40px">
</td>
<td>
<input type="checkbox" name="engine" id="engine" value="yahoo">
</td>
<td>
Your third column content
</td>
</tr>
<tr>
<td>
<img src="images/googplus.png" height="40px" width="40px">
</td>
<td>
<input type="checkbox" name="engine" value="bing">
</td>
<td>
Your third column content
</td>
</tr>
<tr>
<td>
<img src="images/link.png" height="40px" width="40px">
</td>
<td>
<input type="checkbox" name="engine" value="bing">
</td>
<td>
Your third column content
</td>
</tr>
<tr>
<td>
<img src="images/pin.png" height="40px" width="40px">
</td>
<td>
<input type="checkbox" name="engine" value="bing">
</td>
<td>
Your third column content
</td>
</tr>
<tr>
<td>
<img src="images/del.png" height="40px" width="40px">
</td>
<td>
<input type="checkbox" name="engine" value="bing">
</td>
<td>
Your third column content
</td>
</tr>
<tr>
<td>
<img src="images/stumb.png" height="40px" width="55px">
</td>
<td>
<input type="checkbox" name="engine" value="bing">
</td>
<td>
Your third column content
</td>
</tr>
<tr>
<td>
<img src="images/diig.png" height="40px" width="40px">
</td>
<td>
<input type="checkbox" name="engine" value="bing">
</td>
<td>
Your third column content
</td>
</tr>
</table>
关于html - 我想像网格一样对齐我的复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31826167/
我正在尝试使用 imagick 在图像上获得这种效果。在 photoshop 中它被称为渐变贴图,但我在 imagick 中找不到类似的东西。 我想我需要先把它变成黑白的,但我不知道这样做之后如何添加
我是一名优秀的程序员,十分优秀!