Tabbed navigation

后端 未结 4 887
余生分开走
余生分开走 2021-01-28 14:26

I\'m having real difficulty figuring how to do the following:

I want to have two tabs (horizontal next to each other), one for search (and labelled as such) and another

4条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-28 15:02

    This is how you do it with the :target pseudo class

    FIDDLE

    Markup

    
    
    

    CSS

    li
    {
        display: inline-block;
    }
    .search
    {
        display: block;
    }
    .post
    {
        display:none;
    }
    .post:target
    {
        display: block;
    }
    
    .post:target + .search
    {
        display: none;
    }
    

提交回复
热议问题