|
Self-destructive Layouts
@vampirefreaks.com |
|
Filters
Filters: (IE only) Applying a filter to all images: <style> img{ filter: FILTER NAME; } </style> Applying a filter to all image links: <style> a:link img{ filter: FILTER NAME; } </style> Applying a filter to image links, as you hover them: <style> a:hover img{ filter: FILTER NAME; } </style> Applying a filter to image links, as you click them: <style> a:active img{ filter: FILTER NAME; } </style> Applying a filter to your default picture: <style> .defaultpic{ filter: FILTER NAME; } </style> Applying a filter to your thumbnail pictutures: <style> .thumbnail{ filter: FILTER NAME; } </style> Applying a filter a single image: <img src="http://IMAGE_URL_HERE.jpg" style="filter: FILTER NAME;">
|