表格渲染问题:firefox 4、gecko
在 webkit 浏览器中,此页面呈现良好:
http://www.ryanhaywood.com/s/film.html
但在更新后的 Firefox 中,它的间距非常可怕。我已经在 firebug 中搞砸了好几天了,我什至不知道如何在 firefox 中解决这个问题。
我对上述页面中部署的过时解决方案(表)表示歉意
有人能发现这个问题吗?
提前致谢 瑞安
In webkit browsers this page renders fine:
http://www.ryanhaywood.com/s/film.html
But in the updated firefox it is spaced horribly. I have messed around in firebug for days, I have no idea how to even fix this in firefox.
I apologize for the archaic solution (tables) deployed in aforementioned page
Can anyone spot the problem?
Thanks in advance
Ryan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您曾指出用表格创建布局已经过时,我绝对同意。这是使用
的解决方案,该解决方案应该适用于所有浏览器
示例: http://jsfiddle.net/pxfunc/hjgQm/
我将这些电影分类为
左向
和右向
交替模式div 就像这样:我使用边距来控制电影在父 div 中显示的位置,
您可以向上或向下调整
#films div {margin-top:-100px;}
以适合您所需的高度用于抵消薄膜You had indicated creating layouts with tables is dated, I'd definitely agree. Here's a solution using
<div>
's that should work in all browsersexample here: http://jsfiddle.net/pxfunc/hjgQm/
I've classed the films in a
left-orientation
andright-orientation
alternating pattern of div's like so:and I used margins to control where the films show up within the parent div
you can adjust the
#films div {margin-top:-100px;}
up or down to fit your desired height for offsetting the films