The phpcms image is too large and breaks the table image. The adaptive image is scaled down.

高洛峰
Release: 2016-10-19 10:19:56
Original
1021 people have browsed it

img,a img{ border:0; margin:0; padding:0; max-width:590px; width:expression(this.width590?590px:this.width); max-height:590px; height:expression(this .height590?590px:this.height); } There will be two problems with the above css code! 1. It will make the picture very

  img,a img{
border:0;
margin:0;
padding:0;
max-width:590px;
width:expression(this.width>590?"590px ":this.width);
max-height:590px;
height:expression(this.height>590?"590px":this.height);
}

The above code will cause 2 problems!
1. It will make the picture very small. It needs to be refreshed once to display properly!
2. The picture will not be reduced in proportion, and the picture will be severely deformed!
Modify as follows:







Put the above code between

in the web template.


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!