hi,
This is Kashif from Pakistan. Plz help me that how to use 2 images in one css class ? waiting to hear from u soonest
hi,
This is Kashif from Pakistan. Plz help me that how to use 2 images in one css class ? waiting to hear from u soonest
You would use one class for 2 (or more) images, when you want the images to share a similar style. So, if you wanted some images to have a red border, your would put that in your css, and then add that class to each picture:
Code:<style> .redpics {border:red solid 1px;} </style> <img src="left.gif" class="redpics"> <img src="right.gif" class="redpics">
Bookmarks