|
They arent working because you have them defined as id's not classes.
#css2 should be .css2
Use the # sign is only be used for id's (example: id="css2") and can only be used 1 your code. Use a class (.css2) for multiple instances of a item you want to format.
Also, its probably a good idea to change the names of your classes so they describe there purpose.
|