美文网首页
兄弟选择器

兄弟选择器

作者: 直到世界尽头_Leo | 来源:发表于2018-04-11 16:23 被阅读0次
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>兄弟选择器</title>
        <style>
            h1+p{
                color: red;
            }
        </style>
    </head>
    <body>
        <h1>标题</h1>
        <a href=""></a>
        <p>我是段落</p>
        <p>我是段落</p>
        <p>我是段落</p>
        <h1>标题</h1>
        <p>我是段落</p>
        <p>我是段落</p>
        <p>我是段落</p>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:兄弟选择器

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