|
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='/img/020.jpg' alt='Наша компания' class='img-responsive' style='max-width:100%;' loading='lazy'>
| Line 1030 | |
| <img class='clients__img0' alt='Наши клиенты' src='/partners/p10.jpg' loading='lazy'>
| Line 1045 | |
| <img class='clients__img0' alt='Наши клиенты' src='/partners/p11.jpg' loading='lazy'>
| Line 1046 | |
| <img class='clients__img0' alt='Наши клиенты' src='/partners/p09.jpg' loading='lazy'>
| Line 1047 | |
| <img class='clients__img0' alt='Наши клиенты' src='/partners/p01.jpg' loading='lazy'>
| Line 1048 | |
| https://import-export-trade.com/ | | |
|
For users over age 65, it may be better to use at least fourteen-point fonts.
Never use less than nine-point font on a Web site.
The following are all smaller than 12 point:
- <p style="font-size: 11pt;" >
- <p style="font-size: 15px;" >
- <p style="font-size: small;" >
- <font size="2" >
- <font size="-1" >
| Rule: UseFontTooSmall | |
| | | |
| font-size: 11.25pt<p class='contacts__type-text'>Россия, ..., 33</p>
| Line 1109 | |
| font-size: 11.25pt<p class='contacts__type-text'>Казахстан, ..., дом 24/1</p>
| Line 1110 | |
| font-size: 11.25pt<p class='contacts__type-text'>Киргизия, ..., 25, 2 эт, оф.8</p>
| Line 1111 | |
| font-size: 11.25pt<p class='contacts__type-text'>... дом 3</p>
| Line 1112 | |
| font-size: 8.40pt<p>Мы используем ... с нашей...</p>
| Line 1329 | |
| https://import-export-trade.com/ | | |