问答详情
源自:3-2 顶部导航栏(2)

CSS样式出不来怎么办,我用idea写的,是编辑器问题吗

http://img2.mukewang.com/6257a5100001bbd306530583.jpg



从ul li 开始就没有效果产生了

提问者:dudnun 2022-04-14 12:38

个回答

  • dudianxin
    2022-08-04 23:22:44

    .nav {

        height: 30px;

        background: #e3e4e5;

        border-bottom: 1px solid #ddd;

    }


    .nav-box {

        margin: 0px auto;

        width: 1190px;

        text-align: right;

    }


    .nav-box ul li {

        display: inline-block;

        padding: 0px 10px;

        font-size: 12px;

        height: 30px;

        line-height: 30px;

        position: relative; /*相对定位*/

    }


    .nav-box ul li a {

        color: #999999;

        text-decoration: none;

    }


    .nav-box ul li:not(:last-child):after {

        content: "";

        width: 1px;

        height: 14px;

        background: #cccccc;

        position: absolute;  /*绝对定位*/

        top: 8px;

        right: 0px;

        display: block;




    position没有写,布局不生效