最后HTML列表项目上的圆角底部?

时间:2014-05-24 22:37:27

标签: jquery html css html-lists css3

我有这些下拉菜单正常运行,除了菜单的底角没有圆角。我包括了html,css& jquery代码。你知道为什么我的最后一个列表项目没有显示圆角吗?

感谢您的时间!

HTML

    <nav>
    <ul>
        <li><a id="Me" href="#">About Me</a>
        <li><a href="#">Favorite Films</a>
            <!-- Films Drop-Down Menu -->
            <ul>
                <li><a id="DC" href="#">DC Cinematic Universe</a></li>
                <li><a id="Bond" href="#">James Bond</a></li>
                <li><a id="Marvel" href="#">Marvel Cinematic Universe</a></li>
                <li><a id="ST" href="#">Star Trek</a></li>
                <li><a id="SW" href="#">Star Wars</a></li>
                <li><a id="X" href="#">X-Men</a></li>
            </ul>
            <!-- /Films Drop-Down Menu -->
        </li>
        <li><a href="#">Favorite TV Shows</a>
            <!-- TV Drop Down Menu -->
            <ul>
                <li><a id="Americans" href="#">Americans, The</a></li>
                <li><a id="GoT" href="#">Game of Thrones</a></li>
            </ul>
            <!-- /TV Drop Down Menu -->
        </li>
    </ul>
</nav>

CSS

        nav {
    width: 100%;
    height: 2em;
    float: left;
    position: relative;
    background: linear-gradient(hsl(1,79%,30%), hsl(1, 88%, 44%), hsl(2,90%,26%));
    border: hsl(1,79%,30%) 2px solid;
    border-radius: 20px 20px 0 0;
}

nav ul {
    list-style: none;
}

nav li {
    width: 33%;
    display: inline;
    float: left;
    position: relative;
}

nav li a {
    /* Makes entire block for link clickable - not just text. */
    display: block;
    color: white;
    font-size: 1.5em;
    font-weight:bold;
    text-shadow: 5px 5px 5px black;
    transform:skewX(160deg);
    text-decoration: none;
}

nav li a:hover {
    color: #FFCC33;
}

nav ul ul {
    display: none;
    position: absolute;
    background: hsla(1,79%,30%,.8);
    /*Z-Index enables layering - higher values put elements toward top */
    z-index: 99;
}

nav li li {
    float: none;
    width: 100%;
    position: relative;
    padding: 10px;
    /*border: 1px hsl(1,79%,30%);*/
}

nav li li a {
    font-size: 1.25em;
}

/* Round bottom corners of menu items on bottom of drop-down menus.  */
nav li li:last-child {
    border-radius: 0 0 20px 20px;
}

JQUERY

    //DROP-DOWN MENUS
$('nav li').hover(function() {
    // stop() stops all animation before slideDown()
    $('ul',this).stop().slideDown(250);
},
    //When not hovering.
    function(){
        $('ul',this).stop().slideUp(250);
    }
);
//DROP-DOWN MENUS

6 个答案:

答案 0 :(得分:1)

您是否尝试将菜单放入div中,然后明确地将列表的最后一个声明为圆形?

    divname li:last-of-type a
{
   border-bottom:thin solid black;
   border-bottom-left-radius: 20px;
   border-bottom-right-radius: 20px;    
}

答案 1 :(得分:1)

除了最后一个li的选择器外,你拥有的一切都是正确的。你需要做两件事之一:

nav li ul:last-child {...bottom border radius code...}

或者...

nav li li:last-of-type {...}

这让我措手不及,我不确定实施是否会在某些时候发生变化。 :last-child,如名称所示,选择周围元素的最后一个子元素,这就是您需要使用它来指定元素的原因。

:last-of-type选择指定元素的最后一个,在这种情况下为li

答案 2 :(得分:0)

在CSS中,您可以通过不同方式制作圆角:

第一个10px是左上角,2°右上角,3°右下角,4°左下角:

border-radius: 10px 10px 10px 10px;



如果您只指定一个值,则会围绕所有角落:

border-radius: 10px;



或单独:

border-top-left-radius:     10px;
border-top-right-radius:    10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius:  10px;


jsFiddle

答案 3 :(得分:0)

使用此css

    nav {
    width: 100%;
    height: 2em;
    float: left;
    position: relative;
    background: linear-gradient(hsl(1,79%,30%), hsl(1, 88%, 44%), hsl(2,90%,26%));
    border: hsl(1,79%,30%) 2px solid;
    border-radius: 20px 20px 0 0;
}

nav ul {
    list-style: none;
}

nav li {
    width: 33%;
    display: inline;
    float: left;
    position: relative;
}

nav li a {
    /* Makes entire block for link clickable - not just text. */
    display: block;
    color: white;
    font-size: 1.5em;
    font-weight:bold;
    text-shadow: 5px 5px 5px black;
    transform:skewX(160deg);
    text-decoration: none;
}

nav li a:hover {
    color: #FFCC33;
}

nav ul ul {
    display: none;
    position: absolute;
    background: hsla(1,79%,30%,.8);
    /*Z-Index enables layering - higher values put elements toward top */
    z-index: 99;
}

nav li li {
    float: none;
    width: 100%;
    position: relative;
    padding: 10px;
    /*border: 1px hsl(1,79%,30%);*/
}

nav li li a {
    font-size: 1.25em;
}

/* Round bottom corners of menu items on bottom of drop-down menus.  */
nav li li:last-child {
    border-bottom-left-radius:20px;
    border-bottom-right-radius:20px;
}

答案 4 :(得分:0)

背景应用于nav ul ul,而border-radius应用于nav li li:last-child。将背景移至导航李立解决了这个问题。

答案 5 :(得分:-2)

您可以像这样更改border-radius的不同角落:

 .weee {
    border-radius: 0 0 0.2em 0.2em; /* top left, top right, bottom right, bottom left */

link

希望有所帮助!