0

我正在尝试向我的网页添加一个选项卡,如下所示:替代文字

这个例子为基础,我已经让它部分工作了。我的情况不同,因为我希望文本部分是固定的,但尾部部分可以动态调整大小以占用选项卡容器的其余部分。

它在 IE 6 中看起来不错,但并没有真正占据容器的整个宽度。在 Firefox 3 中,它根本不能很好地呈现:(替代文字红色是跨度之间的空白区域)。

如何让它在 IE6 和 Firefox 中正确呈现以占用为#Tab 指定的整个宽度?#Tab4 是我想调整大小以尽可能多地占用空间的区域。

    <style type="text/css">
    #Tab
    {
        width: 300px;
    }

    #Tab1
    {
        background: #000 url(BlueTabSprite.png) no-repeat 0 -136px;
        display: inline-block;
        height: 23px;
        padding-left: 4px;
    }

    #Tab2
    {
        background: #000 url(BlueTabSprite.png) repeat-x 0 -242px;
        display: inline-block;
        overflow: hidden;
        padding-top: 4px;
        height: 19px;
        width: 100px;
    }

    #Tab3
    {
        background: #000 url(BlueTabSprite.png) no-repeat right -30px;
        display: inline-block;
        height: 23px;
        padding-right: 6px;
    }

    #Tab4
    {
        background: #000 url(BlueTabSprite.png) repeat-x 0 -83px;
        display: inline-block;
        height: 23px;
        width:60%
    }

    #Tab5
    {
        background: #000 url(BlueTabSprite.png) no-repeat right -189px;
        display: inline-block;
        height: 23px;
        padding-right:6px;
    }
</style>
<div id="Tab">
    <span id="Tab1">
        <span id="Tab3">
            <span id="Tab2">Test Tab</span>
        </span>
    </span>
    <span id="Tab5">
        <span id="Tab4"></span>
    </span>
</div>
4

3 回答 3

2

我认为滑动门技术可能是您正在寻找的。

于 2008-10-06T19:38:38.650 回答
1

这是一个有效的简化版本:

<div style="background: url('BlueTabSprite.png') no-repeat; width: 290px; min-width: 120px; max-width: 290px; height: 23px;">
<div style="float: right; background: url('BlueTabSprite.png') top right no-repeat; width: 10px; height: 23px;"></div>
Test
</div>
于 2008-10-06T19:50:13.057 回答
1

这个工具可能会有所帮助。

于 2009-02-02T01:41:09.033 回答