css list Flashcards
1
Q
ordered list
A
<ol>
- hierarchy
- presented by numbers and letters
1
Q
unordered
A
<ul>
- randomize
- presented by bullets
2
Q
PROPERTIES OF LIST
A
- Set different list item markers for ordered lists
- Set different list item markers for unordered lists
- Set an image as the list item marker
- Add background colors to lists
3
Q
list-style-type
diff list type marker
A
*ul.a
* specifies the type of list item marker
* uses class id selector
* bullet shapes can be squared, cirle, upper roman numerals and lower-alpha
4
Q
list-style-image property
A
- bullet points has designs
list-style-image: url('sqpurple.gif');
5
Q
list-style-position
A
- specifies the position of the list-item markers (bullet points).
list-style-position: outside;
list-style-position: inside;
6
Q
list-style-type:none
A
- remove default settings
- set padding and margin to “0”
7
Q
list-style property TPI
A
- It is used to set all the list properties in one declaration
order
1. list-style-type
2. list-style-position
3. list-style-image
8
Q
colors
A
<ul>, <ol>
affects entire list <li>
tag will affect the individual list items