<a>中的图像不在IE浏览器中显示?

0 html css jquery internet-explorer jquery-plugins

嗨,我正在使用此div打开弹出窗口使用jquery.Popup正在每个浏览器中工作.但弹出窗口的关闭图像不在IE中显示.

这是div:

 <div id="element_to_pop_up2">
 <h3>There will be Delay with shipping this week. </h3>
 <a class="b-close"><a/>
 </div>
Run Code Online (Sandbox Code Playgroud)

这是用于在弹出窗口上显示交叉图像的类:

.b-close
{

 background: url("x.png") no-repeat scroll 0 0 transparent;
 cursor: pointer;
 display: inline;
 height: 29px;
 left: -18px;
 position: absolute;
 top: -15px;
 width: 25px;
 z-index: 3200;
}
Run Code Online (Sandbox Code Playgroud)

x.png图像未在IE中显示.

Kev*_*nch 6

/是你的锚标记错了地方.应该</a>不是<a/>