Best way to manage whitespace between inline list items

后端 未结 8 1153
悲哀的现实
悲哀的现实 2020-11-28 06:48

My HTML is as follows:

8条回答
  •  心在旅途
    2020-11-28 07:24

    Adopt non-XML-based HTML and omit

  • .

    
    

    Then set the display property of the items to inline-block instead of inline.

    #nav li {
        display: inline-block;
        /display: inline; /* for IE 6 and IE 7 */
        /zoom: 1; /* for IE 6 and IE 7 */
    }
    

提交回复
热议问题