使蓝图 CSS 在 IE 6 和 IE 7 中工作
我正在使用 Blue print CSS,它在 Firefox 中工作正常......但是当我在 IE 中查看它时,即使使用 IE lt IE8,它在间距和对齐方面似乎仍然无法正常工作。
有什么建议我可以做些什么来使它看起来合适吗?
I am using Blue print CSS and it works fine in Firefox...but when I look at it in IE, even with the for IE lt IE8, it still doesn't seem to be working right in terms of spacing and alignment.
Any suggestions on what I can do to make it look proper?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
确保您使用文档类型。如果不这样做,它将以怪异模式呈现。我遇到了同样的问题并纠正了文档类型。
这应该位于文档的顶部
Make sure that you use a doctype. If you do not it will render in quirks mode. I had the same problem and correcting the doctype worked.
That should go at the top of the document
您是否包含 ie.css 文件?在常规蓝图 css 文件下方,包含
ie.css
文件,使用只有 IE 才能解析的表示法:确保 CSS 文件的所有 URL 都正确并且也在您的网站上正常工作。
Are you including the ie.css file? Below the regular blueprint css files, include the
ie.css
file, using the notation that only IE will parse:Make sure that all the URLs to the CSS files are correct and are working on your site also.
我知道这有点晚了,但希望它能帮助那些用谷歌搜索的人。
在这里使用蓝图时的一个大问题是确保您的容器 div 具有容器的 class,而不是 id:
不是
,之前已经让我困惑过几次了。
I know this is a bit late, but hopefully it'll help someone who googles it.
A big gotcha when using blueprint here is to ensure that your container div has a class of container, not id:
Not
It's caught me out a few times before.