CSS

Overzicht van populaire CSS-code

Get Started. It's Free
or sign up with your email address
CSS by Mind Map: CSS

1. Tekstopmaak

1.1. font-family

1.2. font-size

1.3. font-style

1.3.1. italic

1.3.2. oblique

1.4. font-variant

1.4.1. small-caps

1.5. font-weight

1.5.1. bold

1.5.2. bolder

1.5.3. lighter

1.6. color

1.6.1. red, blue...

1.6.2. #rrggbb

1.6.3. rgb(...,...,...)

1.7. text-align

1.7.1. left

1.7.2. center

1.7.3. right

1.7.4. justify

1.8. text-decoration

1.8.1. none

1.8.2. underline

1.8.3. overline

1.8.4. line-through

1.8.5. blink

2. Achtergrond

2.1. background-color

2.2. background-image

2.2.1. url('...')

2.3. background-position

2.3.1. top left

2.3.2. top center

2.3.3. top right

2.3.4. bottom...

2.4. background-repeat

2.4.1. repeat-x

2.4.2. repeat-y

2.4.3. no-repeat

2.4.4. repeat

2.5. background-attachment

2.5.1. scroll

2.5.2. fixed

3. Classes

3.1. selector.class

3.2. .class

3.3. pseudoclasses

3.3.1. a:link

3.3.2. a:hover

3.3.3. a:active

3.3.4. a:visited

3.4. <tr class="...">

4. Algemeen

4.1. <link rel=”stylesheet” type=”text/css” href=”stijl.css”>

4.2. selector1, selector2 { eigenschap1: waarde; eigenschap2: waarde; }