0

它适用于 chrome ,而不适用于 ff/opera。

演示在这里:http ://booksnearby.in/browse_items.php 。“位置:德里 Dhoolsiras 村”线“悬挂”在中间。我试图让它留在容器的底部。为此,我尝试了

Child span tag- {
bottom: -5px;
font-size: 11px;
left: 115px;
line-height: 20px;
position: absolute;
}
Parent:- element.style {
  height: 100%;
  position: relative;
}

但它不起作用,除了在 chrome 中。请帮忙

谢谢。

4

1 回答 1

2

一定要用桌子吗?因为您的问题来自 td 元素的高度。在所有 html 元素中,表格的跨浏览器支持最差 :)

是否可以更改结构以使用 div 元素?

或者你可以给position: relative你的.listtd而不是 div (这意味着从 div 中删除 position 属性)。这个解决方案可以解决问题。

于 2012-11-15T19:23:41.080 回答