rspec/rules/S1099/html/rule.adoc

16 lines
569 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
If the ``++width++`` and ``++height++`` attributes are set, the space required for the image is reserved immediately by the browser, even before it actually starts to load the image.
Without those attributes, the page layout constantly changes as images are loaded until they are all loaded, which can disorient users.
== Noncompliant Code Example
----
<img src="logo.png" alt="My Company" /> <!-- Non-Compliant -->
----
== Compliant Solution
----
<img src="logo.png" alt="My Company" width="100" height="50" /> <!-- Compliant -->
----