所以我在一个行不通<label>
的范围内有这个。<a href...>
对于样式,当我将鼠标悬停在标签上时,它会改变颜色,并且如果您单击标签的任何部分都会链接。我已经在 Chrome、Firefox 和 Safari 上尝试过,它运行良好,但在 IE (10) 中没有任何效果:链接和 CSS。(如果我删除<label>
它可以工作......)代码如下:
HTML:
<html>
<head>
<link rel="stylesheet" type="text/css" href="main.css"/>
</head>
<body bgcolor="#ED454C" link="black" vlink="black" alink="white" >
<table bgcolor="#FAFAFA" style="border-style:solid;border-color:black;" cellspacing="0" cellpadding="0" >
<tr>
<td><a href="archive.php"><label class="uno">This wont work :(</label></a></td>
</tr>
</table>
</body>
<footer>
</footer>
</html>
CSS:
label {
border:0px solid #FF7E7E;
padding:20px;
margin:0px 0px 0px;
display:block;
}
.uno:hover {
background:#33B3CE;
cursor:pointer;
}