网格 960 CSS 问题
在 FF 3.6.14 OS X 10.5.8 中使用 Grid 960 框架时,
使用 CSS 速记
margin: 50px 0 0 0;
会导致边距向下和向左移动。所有值都必须是长手:
margin-top: 50px;
有没有人遇到过这种情况,如果是的话,它是如何以及为什么会发生?
When using the Grid 960 Framework in FF 3.6.14 OS X 10.5.8,
using CSS shorthand
margin: 50px 0 0 0;
cause the margins to shift down and left. All values must be long hand:
margin-top: 50px;
Has anyone encountered this,if so how and why does it occur?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能会覆盖不同的 CSS 值,可能是
margin: xyz j
或排序。最好用长手元素覆盖 CSS,这样就可以了。
You're probably overriding a different CSS value, maybe
margin: x y z j
or sort.It's better to override CSS with long hand elements, so, you're good.
这是因为它适用于列系统,并且在 960px 的特定宽度内居中。当您添加额外边距时。它会扰乱浮动等,因为它将内容推出了设置的 960px 区域。
您可以访问 960.gs 网站,然后单击“生成 css”,这将允许您自行编辑边距和列大小并重新下载模板。或者,您可以手动编辑各个 div 的宽度,但您可能需要删除另一个元素的一些边距/填充,以确保它不会超过网站上每行的 960px
This is due to the fact it works on column system and it is centered within a certain width of 960px. When u add extra margins. It disrupts the floats etc because it is pushing the content out of the 960px area that is set.
You can go to the 960.gs site and then click generate css which will allow u to edit the margin and column sizes urself and redownload the template. Alternatively you could do it manually edit widths for individual divs but you may have to take away some margin/padding another element to make sure it does not excede the 960px for each row on your site