Jump to content

Ghostdancing

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by Ghostdancing

  1. It seems I didn't make myself clear. @Penny asked what are the differences and there are. Ordered lists require...ordination, let's look in the dictionary: The noun ordination comes from the Latin word ordinare, meaning “put in order.” Primary Meanings of ordination 1. n the act of ordaining; the act of conferring (or receiving) holy orders 2. n logical or comprehensible arrangement of separate elements arrangement an orderly grouping (of things or persons) considered as a unit; the result of arranging A list look ordered because it follows a logical arrangement, in our brains, but we need a logical indicator of importance in code. <ul> can't receive the type="" attribute, because there are no itens that must become first, <ol> receive type="" attribute. <ol> don't receive list-style-type, because it has to be ordered with A, a, I, i or a number, <ol> must sign wich item has priority. <ul> receive list-style-type because it has no ordered itens, they're just below each other. Suppose you have to code something that only reads the second itens of lists. Suppose you have to code something that reads the third itens of a list but only the lists that have the type="A". Let's code.
  2. Hi there @Penny! The <ol> tags use type="" attribute to define the ordination. This is a very important concept, and a basic one. <ul>s don't work with the attribute type="". Ordered/Unordered Lists can work with the property list-style-type="" because they are lists whatsoever, but ordered lists must have a type of...ordination item, A, a, i, I or number. Unordered List (The order doesn't matter, we don't need indicators of an item's priority.) || Ordered List (The order matters, we need indicators of an item's priority.) . Hey a) This is more important to know before all; . There b) Ordered lists are often legal or technical documents like @Ingolme pointed; . Hello c) That's why we need importance' scale. Hope I could help! https://www.w3schools.com/html/html_lists.asp
×
×
  • Create New...