gpt4 book ai didi

html - 我无法在不破坏其他单元格对齐的情况下将图像放在表格中

转载 作者:太空宇宙 更新时间:2023-11-03 23:12:13 24 4
gpt4 key购买 nike

我正在尝试将图像放入我的表格中,但是当我放置 img<td> 之间的标签标签;相邻单元格的内容就像有 <br>标签在上面。

我尝试使用 display:inline-block但没有任何影响。

问题:我怎样才能让“邻居内容”熬夜?

<table height="100%" width="100%" border="solid black 1px">
<tr class="Content">
<td class="left">
<img src="sample.jpg" width="250px" />
</td>
<td>
<table class="right">
<tr>
<td class="Title">
<h2> Title of movie </h2>
</td>
</tr>
<tr class="description">
<td>Description of movie</td>
</tr>
<tr class="Actors">
<td>
<h2> Actors of movie </h2>
</td>
</tr>
<tr class="buttons">
<td colspan="2">
<p>Option buttons will be here.</p>
</td>
</tr>
</table>
</td>
</tr>
</table>

这里是相对的 CSS 样式。

.content {
background-color: white;
}
.content .left {
vertical-align: text-top;
width: 250px;
}
.content .right {
vertical-align: text-top;
}

最佳答案

我希望,您想让右栏内容与顶部对齐(抱歉,我不太清楚...)
所以,试试这个:

<table height="100%" width="100%" border="solid black 1px">
<tr class="Content">
<td class="left">
<img src="sample.jpg" width="250px" />
</td>
<td style="vertical-align: top"> <!-- Here is the "trick" -->
<table class="right">
<tr>
<td class="Title">
<h2> Title of movie </h2>
</td>
</tr>
<tr class="description">
<td>Description of movie</td>
</tr>
<tr class="Actors">
<td>
<h2> Actors of movie </h2>
</td>
</tr>
<tr class="buttons">
<td colspan="2">
<p>Option buttons will be here.</p>
</td>
</tr>
</table>
</td>
</tr>
</table>

关于html - 我无法在不破坏其他单元格对齐的情况下将图像放在表格中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32158383/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com