由于布局要求,我在锚标签内附上了一个h4
标签和一个标签。p
问题是这不能正确验证。我需要链接的锚标记和背景图像上的鼠标悬停动作。
在不破坏布局的情况下执行此操作的正确方法是什么?
这是HTML:
<div class="services">
<a href="http://corecubed.com/our-services/{url_title}">
<h4>{home_page_title}</h4>
<p>{home_page_blurb}</p>
</a>
</div>
这是CSS:
.services a:link, .services a:visited {
width: 165px;
height: 181px;
display: block;
color: #5e5e5e;
text-decoration: none;
float: left;
margin: 0 5px 20px 0;
background: url(/images/bg_services.png) no-repeat center bottom;
}
.services a:hover {
background-position: center top;
}
.services h4 {
width: 140px;
height: 50px;
display: block;
font-size: 13px;
font-weight: normal;
color: #eaeaea;
margin: 0;
padding: 10px 10px 0 15px;
}
.services p {
line-height: 19px;
padding: 0 10px 0 10px;
}
我愿意接受任何可靠的指导。