Gibt es eine Möglichkeit, die erste Zeile mehrerer Überschriften unterschiedlicher Größe an der gleichen Grundlinie auszurichten? Auch unabhängig vom folgenden Text, der ebenfalls ausgerichtet werden sollte.Ausrichtung Überschriften auf die gleiche Basislinie, unabhängig davon, folgenden Text?
siehe Bild http://snapplr.com/snap/z1mw bitte
EDIT: Wieder hochgeladen:
alt text http://img144.imageshack.us/img144/7615/screenshot2010021722h53.png
Es scheint mir die einzige Lösung, jede Überschrift und jeden Körper Text in separate DIV zu setzen ist und dann mit Überschriften, um mit padding-top oder margin-top zu spielen, um sie auszurichten (zB wäre H1 36px mit 0px Rand, während H3 24px mit 12px oberem Rand wäre). Etwas wie folgt aus:
<html>
<head>
<style type="text/css" media="all">
div {
width: 240px;
float: left;
}
h1 {
font-size: 36px;
margin: 0;
padding: 0;
}
h3 {
font-size: 24px;
margin: 0;
padding: 10px 0 0 0; /*for some reason I must use 10px instead of 12px to align. Why??*/
}
</style>
</head>
<body>
<div>
<h1>H1 heading</h1>
</div>
<div>
<h3>H3 heading</h3>
</div>
<div>
<h3>H3 heading that is somewhat longer and spans multiple lines</h3>
</div>
<div style="clear:both;"></div>
<div>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>
</div>
<div>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>
</div>
<div>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>
</div>
</body>
Aber das ist nicht sehr schöne Lösung. Gibt es etwas Besseres, bitte?
Vielen Dank!
Willkommen bei Stack Overflow. –
Ich habe Ihre Probe in Photoshop überprüft und Sie brauchen 12 px - es ist nur eine Art optische Täuschung aufgrund der Serifen die Schriftart hat :) – easwee
Zoomed in http://img682.imageshack.us/img682/1604/optic. jpg – easwee