我想在 td 内部添加一个 div,并从 td 定位/调整 div 的大小(水平或垂直或两者兼而有之)。我的问题是,例如,如果我向 div 添加上边距,则表格高度的整行会增加以包含 div。
有没有办法让 td 的高度和宽度保持不变并将 div 定位/调整到 td 之外?div 必须是 td 的子元素。
'a' 元素的相同问题。我不确定答案是否与 div 不同,或者 div 和“a”的解决方案(如果有)是否相同。
提前致谢
Give position: absolute
to your child element. and also display: inline
or display: inline-block
if it is a block element like div
(not necessary for a
tag).
And then by using top
and left
, set the position of the child element. (give negative values)
你可以有:
position:absolute;
给你 div
然后像这样在外面导航:
top:-10px
等等...