|
This makes the page very hard to read or click while images are loading,
and can make the page unusable on mobile devices with slow connections.
Fix by adding width and height attributes to the img tag matching the image dimensions,
or add width: and height: CSS properties for the image.
In responsive layouts, specifying width and height prevents layout jumping because the browser can
pre-calculate the final image size when CSS like this is used:
img { max-width: 100%; height: auto }
| Rule: UseImgWidthHeight | |
| | | |
| <img src='...ages/coalitions/neutrality.png' alt='' class='coalition-carousel-...'>
| Line 680 | |
| <img src='...images/coalitions/darkness.png' alt='' class='coalition-carousel-...'>
| Line 681 | |
| <img src='/images/coalitions/chaos.png' alt='' class='coalition-carousel-...'>
| Line 682 | |
| <img src='/images/coalitions/order.png' alt='' class='coalition-carousel-...'>
| Line 683 | |
| <img src='/images/coalitions/light.png' alt='' class='coalition-carousel-...'>
| Line 684 | |
| https://onpoints.ru/ | | |