img{ border:0; padding:0; max-width:590px; max-height:590px; (this.height590?590px:this.height); } Der obige CSS-Code verursacht 2 Probleme! 1. Dadurch wird das Bild sehr
img,a img{
margin:0;
max-width:590px; 🎜>width:expression(this.width>590?"590px":this.width);
max-height:590px;
height:expression(this.height>590?"590px":this.height );
}
Der obige Code verursacht 2 Probleme!
1. Dadurch wird das Bild sehr klein. Es muss einmal aktualisiert werden, damit es richtig angezeigt wird!
2. Das Bild wird nicht im Verhältnis verkleinert und das Bild wird stark verformt!
Ändern Sie es wie folgt:
padding:0;
max-width: 650px; max-height:1650px; height: expression(this.height > 1650 ? 1650px : 'auto';);
} -->
style>
Fügen Sie den obigen Code zwischen