IE7/8 & IE7/8 中 CSS 问题的注意事项哈希更改插件

发布于 2024-10-14 05:13:34 字数 424 浏览 1 评论 0原文

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

为什么这些浮动在 IE 中会损坏?

另外,有人对“jquery.ba-hashchange.min.js”有任何经验吗? 如何让 hashchange 不那么难看?

谢谢

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

why are these floats breaking in IE?

and also, does anyone have any experience with 'jquery.ba-hashchange.min.js'
how to get the hashchange to not be so.. ugly?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抹茶夏天i‖ 2024-10-21 05:13:34

此页面存在不少问题。

我决定尝试让它在 Firefox 中看起来可以接受,并写下我所做的事情。

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


  • 添加 overflow:auto

  • 删除 top: -32px< /code>
  • 内的 中删除 padding-top:12px

  • 进行以下更改:

    • 删除 padding-top: 75px
    • 添加内边距:40px 0 15px 0
    • 添加溢出:自动
    • 添加宽度:100%
  • 在第一个

    上:


    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。)

There are quite a few problems with this page.

I decided to try to make it look acceptable in Firefox, and wrote down what I did as I was doing it.

After applying all these changes using Firebug, this page looks much better in Firefox.

  • To <section id="page"> add overflow:auto
  • From <footer> remove top: -32px
  • From the <img> inside <div class="leftfloat"> remove padding-top:12px

  • From <div style="padding-top:75px"> make these changes:

    • Remove padding-top: 75px
    • Add padding: 40px 0 15px 0
    • Add overflow: auto
    • Add width: 100%
  • On the first <article>: <article class="leftfloat" style="clear: left; width: 275px;">
    change the width to 250px.

  • On the second <article>: <article class="leftfloat" style="width: 250px;"> add padding: 0 25px 0 0.

Like I said, there are rather a lot of problems with this page. Apply those changes, and let's see how it's looking in IE.


Viewing source here: http://iamwhitebox.com/staging/arkitek/press/index.htm, I see unparsed PHP tags:

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

They shouldn't be there. (I got that URL by looking at the XHR request section in Firebug.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文