英文:
How to prevent display: grid from auto-stretching children table rows
问题
我有一个名为"passives_div"的主容器(div)。
在这个div中有3个表格。
如果其中一个表格的行数少于其任何兄弟表格的行数,那些表格行会拉伸,我需要知道如何停止拉伸。
这是正在发生的情况的屏幕截图。屏幕截图显示了3个事物...结果显示,受影响的HTML和使用的CSS。
英文:
I have a main (container) div called "passives_div".
I have 3 tables inside this div.
If one of the tables has fewer rows than any of it's sibling tables, those table rows stretch, and I need to know of a way to stop stretching.
Here is a screenshot of what's happening. The screenshot shows the 3 things.. the resulting display, the affected HTML, and the CSS used.
答案1
得分: 1
尝试在.passivesDiv
上使用align-items: start
。<br>
希望这能帮助。
英文:
Try align-items: start
on .passivesDiv
.<br>
Hope that helps.
答案2
得分: 0
请尝试使用固定的表格行高。
英文:
Please try with fixed hight of row of table
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论