css list Flashcards

1
Q

ordered list

A
  • <ol>
  • hierarchy
  • presented by numbers and letters
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
1
Q

unordered

A
  • <ul>
  • randomize
  • presented by bullets
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

list-style-image property

A
  • bullet points has designs
  • list-style-image: url('sqpurple.gif');
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

list-style-position

A
  • specifies the position of the list-item markers (bullet points).
  • list-style-position: outside;
  • list-style-position: inside;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

list-style-type:none

A
  • remove default settings
  • set padding and margin to “0”
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

colors

A

<ul>, <ol> affects entire list
<li> tag will affect the individual list items

How well did you know this?
1
Not at all
2
3
4
5
Perfectly