Ie 6 sucks – max-height, max-width

Din seria Ie 6 sucks va prezentam comenzile max-height si max-width.

Deoarece baietii de la Microsoft nu au putut sa lucreze dupa standarde au trebuit sa faca ei lucrurile mai complicate.

Asadar daca ai nevoie de aceste comenzi in Ie le rezolvi in urmatorul mod:

* html div#division {
height: expression( this.scrollHeight > 332 ? „333px” : „auto” ); /* sets max-height for IE */
max-height: 333px; /* sets max-height value for all standards-compliant browsers */
}

Ce faci acolo sus?

Nimic mai simplu: Ii spui la browser ca dupa ce scroolul a ajuns marimea de 332 sa primeasca marimea 333 maxim…..

Cam la fel se face si pentru max-width:

* html div#division {
width: expression( document.body.clientWidth < 334 ? „333px” : „auto” ); /* set min-width for IE */
min-width: 333px; /* sets min-width value for all standards-compliant browsers */
}

Spune si tu parerea...