2

我在获取 Zerb Foundation 3 的 IE7 修复程序时遇到问题(在此处找到

我更改了以下内容:

 * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  *behavior: url(../javascripts/boxsizing.htc); 
}

也:

.button.dropdown > ul {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; *behavior: url(../javascripts/boxsizing.htc); 
  display: none;
  position: absolute;
  left: -1px;
  background: #fff;
  background: rgba(255, 255, 255, 0.95);
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #cccccc;
  border-top: none;
  min-width: 100%;
  z-index: 40;
}

然而,根据我的 adobe browserlab 测试,它仍然没有在 IE7 中正确显示,现在我不确定它是否只是一个 browserlab 问题,因为我无法运行 IE7。

我还尝试将Modernizr 的 no-box-sizing包括在内,它仍在实施,但似乎也没有帮助。

您可以在此处查看该站点

提前致谢!

4

1 回答 1

0

我已经解决了这个问题,我正在使用转换为 wordpress 的基础,并将上述内容包含在我的 style.css 顶部作为我的主题,它对我有用。

于 2012-10-31T23:06:27.667 回答