14 Lists, Tables and Forms Flashcards

1
Q

control the type of bullet point for ordered lists

A

list-style-type:

decimal
1 2 3
decimal-leading-zero
01 02 03
lower-alpha
a b c
upper-alpha
A B C
lower-roman
i. ii. iii.
upper-roman
I II III
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

control the type of bullet point for unordered lists

A
list-style-type:
none
disc
circle
square
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Use an image as a bullet point

A

list-style-image: url(“images/star.png”)

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

control whether the bullet point or marker sits inside or outside the text box

A

list-style-position: outside;

list-style-position: inside;

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

Shorthand for list styling

A

list-style: inside circle

list-style: typeofbulletpoint insideoroutside

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

How to shade every other row

A

make a class called even and apply it to every other row

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

Align numbers to a certain side (right side)

A

create a class called numbers and style it how you like

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

show or hide empty cell border

A

empty-cells: show
hide
inherit

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

increase gap between adjacent cells

A

border-spacing: 5px 15px;

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

Set whether there is a space in between cells or not

A

border-collapse: collapse;

separate;

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

Control the kind of cursor

A
cursor: move;
auto
crosshair
default
pointer
move
text
wait
help
url("cursor.gif");
How well did you know this?
1
Not at all
2
3
4
5
Perfectly