Tabbed navigation

后端 未结 4 873
余生分开走
余生分开走 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 14:58

    Sorry about my previous post. I have modifed Danield's tabbed view a little bit and now its scalable and more reliable.

    Thanx Danield.

        li {
                    display: inline-block;
                    margin-right: 10px;
                    list-style: none;
                }
    
                .frame {
                    display: none;
                }
    
                    .frame:target {
                        display: block;
                    }
    
    
    
    
    
        /// Markup
    
    
        
    
                

    Tab 1

    Tab 2

    Tab 3

    Tab 4

提交回复
热议问题