PHP ver gevorderde |
|
Ik ben geen css expert, maar ik denk dat zoiets zou moeten werken
<style>
.afbeelding img {
max-width: 400px; /* FF */
width: expression(this.width > 400 ? 400: auto);/* IE */
}
</style>
<img src="bla.jpg" class="afbeelding" />
<style> .afbeelding img { max-width: 400px; /* FF */ width: expression(this.width > 400 ? 400: auto);/* IE */ } </style> <img src="bla.jpg" class="afbeelding" />
|