Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Das verstehe ich nicht. Den bestimme ich doch quasi indirekt durch die Differenz von line-heigt und font-size. Oder liege ich da falsch?Den Zeilenabstand kannst du für mehrzeiligem Fließtext nicht bestimmen.
<div>
<b></b>
<p>lorem<br />ipsum</p>
</div>
* {
margin: 0;
padding: 0;
}
body {
font-size : 100%;
}
p {
padding: 1.2em 0;
vertical-align: middle;
[COLOR="DarkRed"][B]line-height: 2.4em;[/B][/COLOR]
background-color: green;
float: left;
width: 100%;
}
div {
position: relative;
width: 8em;
}
b {
position: absolute;
[COLOR="#8b0000"][B]height: 1.2em;[/B][/COLOR]
width: 100%;
background-color: yellow;
opacity: 0.5;
top: 3em;
left:0;
}