0

新手在这里

我正在制作一个有 2 个主要部分的网站:一个较大的部分(A 部分)宽度为 75%,另一个部分(B 部分)宽度为 25%,并排显示。

A部分有几个p标签,里面有脚注,唯一的问题是当我将脚注悬停时,它出现在B部分的后面,有人可以帮我吗?谢谢!

截图:http: //imgur.com/7BQrcP7

CSS 代码:

Section A {
    margin: 0px;
    padding: 0px;
    background-color: #FAFAFA;
    float: left;
    width: 75%;
}
Section B {
    float: right;
    width: 25%;
    text-align: left;
}
Footnote-sign {
    background-color: #ffc;
    cursor: pointer;
    vertical-align: super;
    font-size: 77%;
}
Footnote-tooltip {
    background-color: #fea; 
    border: 1px solid #6b0000; 
    display: inline; 
    padding: 5px; 
    display: none; 
    position: absolute;
    font-size: 85%;
    max-width: 540px;
    text-align: left;
}
4

3 回答 3

0

如果你想在没有 z-index 的情况下实现这一点,请按照我的笔。

希望这支笔能帮到你。

'http://codepen.io/anon/pen/NGeaKp'
于 2015-11-13T05:12:19.207 回答
0

您需要z-index在脚注元素中添加 a 以使其看起来高于其他所有元素,没有HTML我将只应用z-index到两个脚注CSS元素

CSS

Footnote-sign {
    background-color: #ffc;
    cursor: pointer;
    vertical-align: super;
    font-size: 77%;
    z-index: 100; /* a large number to ensure it's on top */
}
Footnote-tooltip {
    background-color: #fea; 
    border: 1px solid #6b0000; 
    display: inline; 
    padding: 5px; 
    display: none; 
    position: absolute;
    font-size: 85%;
    max-width: 540px;
    text-align: left;
    z-index: 100; /* a large number to ensure it's on top */
}
于 2015-11-13T04:42:11.520 回答
0

添加z-index到脚注工具提示

Footnote-tooltip {
z-index:100;
}
于 2015-11-13T04:43:48.450 回答