是否可以为箭头制作具有更大底部填充的 href

Is it possible to make a href with bigger bottom padding for an arrow

我想在悬停时制作带有箭头图像的顶部菜单,它将显示在下一个 div 的边框线上。

My fast made fiddle:

以及我想做的事情的图片

HTML

<div class="wrapper">
    <img src="" alt="" id="logo" />
    <ul id="topmenu">
        <li><a href="" title="">item 1</a></li>
        <li><a href="" title="">item 2</a></li>
        <li><a href="" title="">item 3</a></li>
    </ul>
</div>

<div class="full-width-page">
    <div class="wrapper">
        <div id="header-image">
            image with content goes here
        </div>
    </div>
</div>

CSS

.wrapper {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.full-width-page {
    width: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    overflow: hidden;
}

#logo {
    float: left;
    width: 200px;
    height: 30px;
    background-color: gray;
    margin-top: 15px;
}

#topmenu {
    float: right;
    display: block;
    list-style: none;
    margin: 0px;
    padding: 20px;
}

#topmenu li {
    display: inline-block;
    padding-bottom: 20px;
}

#topmenu li a:hover {
    background-image: url(http://www.ristatebassmasters.com/images/smallDownArrow.gif);
    background-repeat: no-repeat;
    background-position: center 8px;
}

#header-image {
    height: 200px;
    line-height: 200px;
}

我知道有一个解决方案可以将菜单创建为 position: absolute。然后在 href 上设置 padding-bottom 会将箭头进一步向下推,但是当菜单定位为绝对时,我将无法使用 float: right 将其向下推。

我已经从菜单中向您添加了 padding-bottom <a> 个元素,它的工作方式类似于 here

检查并写下是否适合您:)

这是您想要的updated fiddle

CSS

#topmenu {
    display: block;
    list-style: none;
    margin: 0px;
    padding: 20px;
    position: absolute;
    right: 0;
    top: 0;
}
#topmenu li {
    display: inline-block;
    padding-bottom: 20px;
}

#topmenu li a{
    padding-bottom: 30px; 
}
#topmenu li a:hover {
    background-image: url(http://www.ristatebassmasters.com/images/smallDownArrow.gif);
    background-repeat: no-repeat;
    background-position: center 32px;

}
#header-image {
    height: 200px;
    line-height: 200px;
}