gpt4 book ai didi

html - 是否可以在 ie7 中的子跨度前面显示父跨度的边框?

转载 作者:太空宇宙 更新时间:2023-11-03 19:19:57 27 4
gpt4 key购买 nike

我希望阴影位于文本后面。有没有人看到我做错了什么?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" ><style>.tooltip{background-color: #ffffe1;position: absolute;border-style:solid;border-width: thin;border-color: #000000;z-index: 25;}.tooltip_shadow{background-color: #dadbda;position: absolute;width: 100%;height: 100%;left: 5px;top:5px;z-index: -1;}</style><SPAN style="TOP: 86px; LEFT: 39px" class=tooltip>    <SPAN style="Z-INDEX: 15">This is a message!</SPAN>    <SPAN class=tooltip_shadow>    </SPAN></SPAN>

谢谢,格雷

最佳答案

我不知道你实际上是想通过阴影来完成什么,但我知道这段 HTML 有很多语法错误。标准化后,我只是在div下得到了一个div,所以它的背景是灰色的。你想完成什么?

这是您要找的吗?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<style type="text/css">
.tooltip{
position: absolute;
}

.tooltip_shadow{
background-color: green;
position: absolute;
width: 100%;
height: 100%;
left: 5px;
top: 5px;
}

.tooltip_content
{
background-color:red;
position:relative;
border-style:solid;
border-width: thin;
border-color: #000000;
}
</style>

</head>

<body>
<div style="top: 86px; left: 39px;" id="wvTooltipdiv_1" class="tooltip">
<div class="tooltip_shadow"></div>
<div class="tooltip_content">This is a message!</div>
</div>
</body>
</html>

关于html - 是否可以在 ie7 中的子跨度前面显示父跨度的边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4587444/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com