Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>CSS Test: text-decoration with block children</title>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
<link rel="reviewer" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact" />
<link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/text/decoration/005.html" type="text/html"/>
<style type="text/css">
div { color: blue; text-decoration: underline; position: relative; }
.block { display: block; }
.float { float: right; }
.pos { position: absolute; top: 4em; right: 0; }
</style>
</head>
<body>
<div>
<span class="test"> This text should be underlined.
<span class="block"> This text should be underlined. </span>
<span class="float"> This text should NOT be underlined. </span>
<span class="pos"> This text should NOT be underlined. </span>
</span>
</div>
</body>
</html>