MatteoGabriele / vue-progressive-image

Vue progressive image loading plugin
https://matteo-gabriele.gitbook.io/vue-progressive-image/
MIT License
721 stars 43 forks source link

Wrapping a div around an img tag results in a new line #64

Closed ronyland closed 2 years ago

ronyland commented 5 years ago

div property is block, but img property is inline。 Replacing with

will cause the style to get messy

kgnfth commented 3 years ago

this fixed it for me

.progressive-image {
  position: unset !important;
}