CSS list item width/height does not work

前端 未结 6 576
谎友^
谎友^ 2020-12-02 22:35

I tried to make a navigation inline list. You can find it here: http://www.luukratief-design.nl/dump/parallax/para.html

For some reason it does not display the widt

6条回答
  •  被撕碎了的回忆
    2020-12-02 23:26

    I had a similar issue trying to fix the item size to fit the background image width. This worked (at least with Firefox 35) for me :

    .navcontainer-top li
    {
      display: inline-block;
      background: url("../images/nav-button.png") no-repeat;
      width: 117px;
      height: 26px;
    }
    

提交回复
热议问题