CSS Classes and CSS IDs
In CSS you can use ID’s and classes to reference your elements individually.
CSS Classes
Look at this running example.
HTML:
<img src=”images/image1.jpg” alt=”image 1″ />
<img src=”images/image2.jpg” alt=”image 2″ />
<img src=”images/image3.jpg” alt=”image 3″ />
<img src=”images/image4.jpg” alt=”image 4″ />
<img src=”images/image5.jpg” alt=”image 5″ />
These 5 images are all on one HTML page. I want the middle image to [...]
