我想让我的整个 div 可点击,所以我改变了 div 中链接的样式,所以它占用了 div 的整个大小。但是当我向 div 添加填充时,背景确实会扩展,但我的链接不会。
这是我所拥有的:
html:
<div id="b_register">
<a href="#"> Register </a>
</div>
CSS:
#b_register {
background-color: #CCCCCC;
display: block;
float: left;
font-size: 16px;
height: 20px;
margin-bottom: 5px;
margin-right: 5px;
padding: 10px;
text-align: center;
width: 110px;
}
#b_register a {
display: block;
height: 100%;
width: 100%;
text-decoration: none;
color:white;
}
#b_register:hover{
background-color: #009FD6;
}
或者你也可以去那里
http://jsfiddle.net/EycDQ/1/
我想要的是使 div 即使有填充也可以点击,并且不使用 div 上的任何 Onclick 事件。
谢谢!