treehouse : what would you like to learn today?
Web Design Web Development iOS Development

How i control List style

  • how i customize gap between list style and list text.
  • I'm not 100% I understand what you're talking about, but I assume you mean unordered (ul) and ordered (ol) lists:

    In your css:


    li {
    margin: 5px 0;
    }

    This will create an extra 5px gap above and below each listed item.