导航按钮具有悬停效果

时间:2012-11-29 21:02:06

标签: css button navigation

我想在此页http://oakespavers.com/(左侧)上复制具有相同悬停效果的按钮样式。每次尝试时,只会影响框中的文字。我希望整个div在鼠标悬停时改变颜色并保持代码非常简单。

1 个答案:

答案 0 :(得分:1)

这可能会这样做:

HTML:

<a href="#">Home</a>
<a href="#">Our Blog</a>
<a href="#">Contact US</a>
​

CSS:

a {
    border-radius: 5px;
    font-weight: 600;
    text-align: left;
    font-family: "Verdana", "Geneva", "sans-serif";
    text-transform: none;
    letter-spacing: 0px;
    font-weight: bold;
    font-size: 12px;
    display: block;
    padding: 10px 20px;
    color: #666;
    background-color: #E1E1E1;
    text-decoration: none;
    width: 225px;
    margin: 5px;
}
a:hover {
    color: white;
    background-color: #75D039;
}

这是一个fiddle的例子