| Artikkel-oversikt | |
| Scripts og tips hos Winfolinx.com | ||
| Webhotell |
| CSS: | ... og sånn blir det: |
|
<html><head> <style type="text/css"> img.normal {height: auto; width: auto } img.big {height: 80px; width: 100px } img.small {height: 30px; width: 50px } </style> </head><body> <img class="normal" src="../../bilder/bok11.gif" width="72" height="40"> <br><br> <img class="big" src="../../bilder/bok11.gif" width="72" height="40"> <br><br> <img class="small" src="../../bilder/bok11.gif" width="72" height="40"> </body></html> |
|
NB: Netscape 4 har ikke support for "Height"-property, og "Width"-property fungerer ikke på bilder.
|
|