我的代码:
<a id="entire" href="/check-appointment.php">
<div id="check_box">
<div id="check_content">
<a id="boxis" href="/check-appointment.php">I am a sales rep</a>
<br> making a request on behalf of the client.
</div>
</div>
</a>
CSS:
#check_box {
width:423px;
height:250px;
margin-left:100px;
margin-top:10px;
}
#check_content {
font-weight:bold;
font-size:37px;
}
问题:
我无法完成工作,我试图让整个div成为
的一部分我怎样才能让它发挥作用?
答案 0 :(得分:2)
如果您有HTML5 DocType,它应该可以使用,之前的任何内容都不允许内联元素a
包装块级元素div
。
即使你使用锚点,除非你做一些z索引,那么你的内部链接可能不会被看到你的预期......因为它是同一个链接它不应该是一个问题,但那就变成了重复的。