美文网首页
css3 设置不包括上下边的列表间隔线

css3 设置不包括上下边的列表间隔线

作者: rayman_v | 来源:发表于2017-06-06 14:31 被阅读23次

    效果图:

    方法一:通用兄弟选择器( ~ )

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
        <meta name="viewport" content="width=device-width">
        <style>
            ul {margin: 0; padding: 0;}
            li { list-style: none; height: 50px; line-height: 50px;}
            li~li {border-top: 1px solid #000;} 
        </style>
    </head>
    <body>
        <ul>
            <li>1</li>
            <li>2</li>
            <li>3</li>
            <li>4</li>
            <li>5</li>
            <li>6</li>
        </ul>
    </body>
    </html>
    

    li~li {...} 中的 ~ 符号称为通用兄弟选择器,匹配P元素之后的P元素,所以第一个P元素不会匹配到。

    方法二:伪类选择器( :first-of-type / :last-of-type )

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
        <meta name="viewport" content="width=device-width">
        <style>
            ul {margin: 0; padding: 0;}
            li { border-top: 1px solid #000; list-style: none; height: 50px; line-height: 50px;}
            li:first-of-type {border-top: none;}
        </style>
    </head>
    <body>
        <ul>
            <li>1</li>
            <li>2</li>
            <li>3</li>
            <li>4</li>
            <li>5</li>
            <li>6</li>
        </ul>
    </body>
    </html>
    

    首先将所有 li 设置 border-top,然后用 :first-of-type 查找到第一个 li ,取消border-top。

    相关文章

      网友评论

          本文标题:css3 设置不包括上下边的列表间隔线

          本文链接:https://www.haomeiwen.com/subject/btwgfxtx.html