2

http://iamwhitebox.com/staging/arkitek/#press/index.htm
http://iamwhitebox.com/staging/arkitek/#contact/index.htm

为什么这些浮点数会在 IE 中中断?

而且,有没有人对'jquery.ba-hashchange.min.js'有任何经验如何让hashchange不那么......丑陋?

谢谢

4

1 回答 1

0

这个页面有很多问题。

我决定尝试让它在 Firefox 中看起来可以接受,并写下我在做的时候做了什么。

使用 Firebug 应用所有这些更改后,此页面在 Firefox 中看起来好多了。

  • <section id="page">添加_overflow:auto
  • <footer>删除top: -32px
  • <img>里面<div class="leftfloat">取出padding-top:12px

  • <div style="padding-top:75px">进行这些更改:

    • 消除padding-top: 75px
    • 添加padding: 40px 0 15px 0
    • 添加overflow: auto
    • 添加width: 100%
  • 关于第一个<article><article class="leftfloat" style="clear: left; width: 275px;"> 更改width250px

  • 关于第二个<article><article class="leftfloat" style="width: 250px;">添加padding: 0 25px 0 0

就像我说的,这个页面有很多问题。应用这些更改,让我们看看它在 IE 中的外观。


在此处查看源代码:http: //iamwhitebox.com/staging/arkitek/press/index.htm,我看到未解析的 PHP 标签:

<?php
 include_once 'includes/header.inc';
?>
...
<?php
 include_once 'includes/footer.inc';
?>

他们不应该在那里。(我通过查看 Firebug 中的 XHR 请求部分获得了该 URL。)

于 2011-01-24T21:59:13.763 回答