[Solved] Unknown space between my list elements [duplicate]


I would recommend using flexbox for this or you can use one of the methods listed in the following codepen.

Flex box version:

ul.flexbox {
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

http://codepen.io/chriscoyier/pen/hmlqF

1

solved Unknown space between my list elements [duplicate]