14 Lists, Tables and Forms Flashcards
control the type of bullet point for ordered lists
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
control the type of bullet point for unordered lists
list-style-type: none disc circle square
Use an image as a bullet point
list-style-image: url(“images/star.png”)
control whether the bullet point or marker sits inside or outside the text box
list-style-position: outside;
list-style-position: inside;
Shorthand for list styling
list-style: inside circle
list-style: typeofbulletpoint insideoroutside
How to shade every other row
make a class called even and apply it to every other row
Align numbers to a certain side (right side)
create a class called numbers and style it how you like
show or hide empty cell border
empty-cells: show
hide
inherit
increase gap between adjacent cells
border-spacing: 5px 15px;
Set whether there is a space in between cells or not
border-collapse: collapse;
separate;
Control the kind of cursor
cursor: move; auto crosshair default pointer move text wait help url("cursor.gif");