Commit Graph

9 Commits (4fc41ac1334808e12c3b202958588ad6fe7f5c75)

Author SHA1 Message Date
DavidNachman 0f58e9ece4 </li> closing tag (#31856)
* Update index.md

* updated due to request

I added the requested <li> information as requested.

* fix: added backticks around keywords
2018-12-16 07:02:13 -08:00
warrenskim 10e67fb692 Added additional reference for styling lists (#33196) 2018-12-12 14:52:41 -08:00
averyl36 8f6e7165a0 Different Ordered Lists (#28137)
Added in a section to show how to display a list ordered by roman numerals or letters rather than just numbers.
2018-12-12 14:52:05 -08:00
Zonqq 6533b99fcd Add more information about list (#26000) 2018-12-12 14:33:31 -08:00
adeelnazir13236 42ee9f849a Added Nested HTML Lists with example (#22537)
* Added Nested HTML Lists with example

* added `html` markdown for code block, added output example
2018-11-25 11:43:24 -07:00
Minna f365204cc8 Add the text "### Nested HTML lists" to (#22946)
* Add the text "### Nested HTML lists" to

### Nested HTML Lists

List can be nested (lists inside lists):

##### Code:

<ul>
  <li>Coffee</li>
  <li>Tea
    <ul>
      <li>Black tea</li>
      <li>Green tea</li>
    </ul>
  </li>
  <li>Milk</li>
</ul>


##### Output:

<ul>
  <li>Coffee</li>
  <li>Tea
    <ul>
      <li>Black tea</li>
      <li>Green tea</li>
    </ul>
  </li>
  <li>Milk</li>
</ul>

* Fixed formatting and reordered sections
2018-11-21 23:00:02 -05:00
alenniu dbb6294729 Additional Reference (#20281)
Added WebPlatform external html lists reference list.
2018-10-28 21:51:31 -05:00
allenpbiju 9afa8347ee Added more details for styling lists (#20047)
* Added more details for styling lists

More details have been provided on how to style the unordered and ordered list like changing the default list item markers and also replacing them with images.

* Grammar updates
2018-10-27 10:35:53 -07:00
Mrugesh Mohapatra da0df12ab7 fix(guide): simplify directory structure 2018-10-16 21:32:40 +05:30