【发布时间】:2021-08-24 15:58:53
【问题描述】:
我正在尝试将表格的第二列重新定位在第一列的正下方。我正在使用 html 表。现在它 [看起来像这样]:Screenshot 或 live site。但在移动版本上,它仍然保留这 2 列!我怎样才能把第二列放在第一位? 您可以通过文章开头的链接打开 HTML 代码(在网站上它的业务服务、表格)或查看此处:
HTML:
.TableOfReasons {
position: relative;
left: 0%;
right: 100%;
}
table {
background-color: transparent;
}
table {
border-spacing: 0;
border-collapse: collapse;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
<table class="TableOfReasons">
<!--One block-->
<tr>
<td class="feature-title"><h4>Odours elimination</h4></td>
<td class="right-clmn feature-title"><h4>Communal service</h4></td>
</tr>
<tr>
<td class="feature-img"><image src="images/1.jpg" width="250px"></td>
<td class="right-clmn feature-img"><image src="images/5.png" height="167px"></td>
</tr>
<tr>
<td class="feature-button"><a href="/more-page.php?language=en&name=removing-smell&link_back=/eng.html&block=bussines"><button class="more_btn">More</button></a></td>
<td class="right-clmn feature-button"><a href="/more-page.php?language=en&name=communal-service&link_back=/eng.html&block=bussines"><button class="more_btn">More</button></a></td>
</tr>
<!--End of one block-->
<!--One block-->
<tr>
<td class="feature-title"><h4>Stimulation of avian growth <br> and prevention of infectious diseases </h4></td>
<td class="right-clmn feature-title"><h4>Stimulation of animal <br> growth and prevention of infectious diseases </h4></td>
</tr>
<tr>
<td class="feature-img"><image src="images/3.jpg" height="167px"></td>
<td class="right-clmn feature-img"><image src="images/2.jpg" width="250px"></td>
</tr>
<tr>
<td class="feature-button"><a href="/more-page.php?language=en&name=birds&link_back=/eng.html&block=bussines"><button class="more_btn">More</button></a></td>
<td class="right-clmn feature-button"><a href="/more-page.php?language=en&name=animals&link_back=/eng.html&block=bussines"><button class="more_btn">More</button></a></td>
</tr>
<!--End of one block-->
<!--One block-->
<tr>
<td class="feature-title"><h4>Greenhouses</h4></td>
<td class="right-clmn feature-title"><h4>Smell at a bar, restaurant, hotel etc.</h4></td>
</tr>
<tr>
<td class="feature-img"><image src="images/6.jpg" width="250px"></td>
<td class="right-clmn feature-img"><image src="images/4.jpg" width="250px"></td>
</tr>
<tr>
<td class="feature-button"><a href="/more-page.php?language=en&name=plants&link_back=/eng.html&block=bussines"><button class="more_btn">More</button></a></td>
<td class="right-clmn feature-button"><a href="/more-page.php?language=en&name=smell-in-public-place&link_back=/eng.html&block=bussines"><button class="more_btn">More</button></a></td>
</tr>
<!--End of one block-->
<!--One block-->
<tr>
<td class="feature-title"><h4>Beekeeping</h4></td>
<td class="right-clmn feature-title"><h4>A the gym</h4></td>
</tr>
<tr>
<td class="feature-img"><image src="images/8.jpg" width="250px"></td>
<td class="right-clmn feature-img"><image src="images/7.jpg" width="250px"></td>
</tr>
<tr>
<td class="feature-button"><a href="/more-page.php?language=en&name=bees&link_back=/eng.html&block=bussines"><button class="more_btn">More</button></a></td>
<td class="right-clmn feature-button"><a href="/more-page.php?language=en&name=at-gym&link_back=/eng.html&block=bussines"><button class="more_btn">More</button></a></td>
</tr>
<!--End of one block-->
</table>
【问题讨论】:
-
寻求调试帮助的问题(“为什么这段代码不起作用?”)必须包括所需的行为、特定的问题或错误以及重现它所需的最短代码在问题本身。没有明确问题陈述的问题对其他读者没有用处。请参阅:如何创建最小、完整和可验证的示例。 How to create a Minimal, Complete, and Verifiable example.
-
@caramba 我不知道如何将 HTML 放在这里。 StackOverflow 只是输出,没有代码!
-
您可以编辑您的问题,在编辑器中有一个添加代码的图标。如果没有找到,编辑器右侧还有一个问号
?。使用它,它会显示帮助。
标签: html css html-table