我第一次使用 HTML5/CSS3,并且在我的一个页面上使用了一个不错的链接到对话框(模式)显示。
这在 Chrome/Firefox 中就像一个梦想,但在 IE 中却不是(可能不是一个巨大的惊喜)。
在 IE (9) 中,当试图点击链接时,页面实际上完全冻结了。
谁能准确指出 CSS 的哪一部分不兼容以及是否有可用的修复程序?
代码在下面找到,在此先感谢。
HTML
<td><a href="#Code1">Get Date / Without Time</a></td>
<div id="Code1" class="modalDialog">
<div>
<a href="#close" title="Close" class="close">X</a>
<h2>TITLE</h2>
<p>TEXT</p>
</div>
</div>
CSS
.modalDialog {
position: fixed;
font-family: "Trebuchet MS", Helvetica, sans-serif;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow: auto;
background: rgba(0,0,0,0.8);
z-index: 99999;
opacity:0;
-webkit-transition: opacity 400ms ease-in;
-moz-transition: opacity 400ms ease-in;
transition: opacity 400ms ease-in;
pointer-events: none;
}
.modalDialog:target {
opacity:1;
pointer-events: auto;
}
.modalDialog > div {
width: 40%;
height: auto;
position: relative;
margin: 10% auto;
padding: 5px 20px 13px 20px;
border-radius: 10px;
background: #FFFFFF;
background: -moz-linear-gradient(#FFFFFF, #999999);
background: -webkit-linear-gradient(#FFFFFF, #999999);
background: -o-linear-gradient(#FFFFFF, #999999);
}
.close {
background: #285C82;
color: #FFFFFF;
line-height: 25px;
position: absolute;
right: -12px;
text-align: center;
top: -10px;
width: 24px;
text-decoration: none;
font-weight: bold;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-moz-box-shadow: 1px 1px 3px #000;
-webkit-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
}
.close:hover { color: #285C82; background: #FFFFFF; }