<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Vertical-Aligning Text</title>
<style type="text/css">
.wrap {
width:500px;
margin:50px auto 0;
}
h1 {
font-size:1.5em;
text-align:center;
}
p {
margin:0;
background:red;
text-align:center;
}
p b {
font:30px/1.5 arial;
text-decoration:underline;
}
p span {
font:24px/1.2 arial;
vertical-align:bottom;
text-decoration:underline;
background:yellow;
}
p em {
font:18px/1.2 arial;
vertical-align:top;
text-decoration:underline;
}
div.block {
min-height:50px;
background:green;
color:#FFF;
}
div.up {
margin-top:-7px;
position:relative;/*stack above span inline box*/
}
.noline {text-decoration:none;}
.in-block {
display:inline-block;
font:24px/16px arial;/*reduced line height*/
vertical-align:bottom;
text-decoration:none;
}
.last p b {
display:inline-block;
font:20px/24px arial;
text-decoration:none;
}
</style>
</head>
<body>
<h1>Vertical-Aligning Text</h1>
<div class="wrap">
<p><b>baseline text</b> <span>bottom text</span> <em>top text</em></p>
<div class="block">No margin on this div</div>
</div>
<div class="wrap">
<p><b>baseline text</b> <span class="noline">bottom text</span> <em>top text</em></p>
<div class="block up">Negative top margin on this div</div>
</div>
<div class="wrap last">
<p><b> </b><span class="in-block">inline-block v-a:bottom</span><b> </b></p>
<div class="block">No margin on this div<br> inline-block span with reduced line-height</div>
</div>
</body>
</html>
Bookmarks