0
4

1 回答 1

3

你的问题在于你的定义。在您的 HTML 中,您使用的是 ID#KitchenOverlay

您的 CSS 正在使用.KitchenOverlay哪个目标类。

你有两个选择:

在您的 CSS 中更改.KitchenOverlay为。#KitchenOverlay

或者

改变...

<div id="KitchenOverlay" style="height: 310px; width: 267px;">

到...

<div class="KitchenOverlay" style="height: 310px; width: 267px;">

编辑您的回复:

尝试将#closePopup 更改为一个类。所以class="closePopup"HTML

然后在CSS中像这样定位你的标签......

#KitchenOverlay .closePopup {
***STYLES***
}

编辑:

#closePopup 
{
position: absolute !important; 
top: 40px !important; 
left: 20px !important; 
width: 83px !important; 
height: 83px !important; 
background-color: transparent !important; 
border: 1px solid yellow !important; 
}
于 2013-04-09T13:18:54.620 回答