`

Navigation with ul and li

 
阅读更多

Problems:

We need a navigation on most of the web pages. We can use <ul> and <li> to set the items of the navigation. There are many navigation style. Here, I just give an example to show the navigation items horizontally with a vertical bar between like taobao navigation.

 

Solution:

        .navigation li {
            float: left;
            list-style: none outside none;
            padding:0 9px 0 9px;
            border-left: 1px solid #D0D0D0;
        }

        .navigation li.first{
            border-left: 0 none;
        }

        .navigation li a {
            text-decoration: none;
        }

 

Try it with jsfiddle

  • 大小: 2.3 KB
分享到:
评论

相关推荐

    Test Bootstrap with ASP.NET

    &lt;button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"&gt; ...

    st2 插件集合

    3. **Wrap with Abbreviation(包裹缩写)**:选中代码,然后输入`div`并按`Ctrl+B`(Windows/Linux)或`Cmd+B`(Mac),可将选中内容包裹在`&lt;div&gt;`标签内。 4. **Preview(预览)**:在CSS编写中,输入`width:50px...

    thymeleaf_3.0.5_中文参考手册

    例如,`&lt;ul&gt;&lt;li th:each="item : ${items}"&gt;${item.name}&lt;/li&gt;&lt;/ul&gt;`会遍历items列表并显示每个项目的名称。 4. **表单处理**:Thymeleaf简化了HTML表单的绑定和验证。`th:field`指令可以将表单字段与模型对象的...

    (英文)The CSS Anthology: 101 Essential Tips, Tricks & Hacks 2009

    - **列表项的应用**:使用`&lt;ul&gt;`和`&lt;li&gt;`构建导航。 - **动态效果**:通过`:hover`实现下拉或滑动效果。 - **响应式设计**:适应不同屏幕尺寸的菜单布局调整。 5. **表格美化** - **单元格样式**:`border`、`...

    twitter bootstrap web 开发

    &lt;button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"&gt; ...

    Pycharm新手教程(只需要看这篇就够了)

    例如,输入`div#page&gt;div.logo+ul#navigation&gt;li*5&gt;a`,然后回车,即可生成相应的HTML结构。 以上就是PyCharm的一些基础功能和高效使用技巧。熟练掌握这些,你将能够更加流畅地在PyCharm中进行Python开发。继续探索...

Global site tag (gtag.js) - Google Analytics