我在表格上垂直对齐文字顶部时遇到问题
我已将全局设置为td
到vertical-align: middle
。
现在我需要将仅一个 td
更改为vertical-align: text-top
问题是,我测试的所有版本vertical-align:text-top
仅显示为顶部
(图像中的“xxxx”与“yyyy”不在同一行)
只有一个变体作为text-top
使用,这是所有td
的全局样式的更改(我不希望这样,我需要更改只有一个 { {1}})
查看图片
设置为本地样式显示为顶部 local style http://aukro.svecpetr.com/style.png
设置为类显示为顶部 local style http://aukro.svecpetr.com/class.png
更改全局td
具有 text-top 的正确效果
local style http://aukro.svecpetr.com/global-style.png
示例 https://zbozimat.cz/test.php
有人能帮助我吗?
答案 0 :(得分:24)
为div添加:
display: inline-block;
vertical-align: top;
这是输入:
display: inline-block;
vertical-align: top;