Update Pictograms Enabled authored by Schildhauer Niklas's avatar Schildhauer Niklas
......@@ -11,7 +11,7 @@ The picture shows an example of how pictograms can be used to make a text more a
### Usage
To implement the feature in a web page, the web author must implement a CSS tooltip with the explanatory pictogram for selected words.
``` HTML
```html
<style>
.tooltip {
position: relative;
......@@ -45,7 +45,7 @@ To implement the feature in a web page, the web author must implement a CSS tool
However, there exists the problem that the images are loaded even if the function is not desired and thus data is transferred unnecessarily. To counteract this behavior, the <picture> element could be used and the image source could be specified with an MQ. Unlike <video> elements, an MQ is legitimate there.[^3]
In this case, the image would only be loaded if this is also desired by the user.
``` HTML
```html
<div class="tooltip">banking
<span class="tooltippicto">
<pictrue>
......
......