【发布时间】:2013-04-16 09:05:33
【问题描述】:
我有这个 HTML 代码
<a href="test.html">
<div class=" menubox mcolor1">
<h3>go to test page</h3>
</div>
</a>
这是css
.menubox {
height: 150px;
width: 100%;
font-size: 14px;
color: #777;
margin: 0 0 0 0;
padding: 0;
-moz-border-radius: 10px;
border-radius: 10px;
position: relative;}
.mcolor1 { background: #3A89BF url(../images/prod2.png) no-repeat center center; }
鼠标悬停在这个div上,文字显示超链接线,如何隐藏?
【问题讨论】:
-
a { text-decoration: none; } -
标签: css hyperlink hover text-styling