<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>Basic Display Example</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<style type="text/css">
p {border-style: solid;
border-width: 1px;
margin: 2px;
background-color: yellow;
display: inline;}
#p2 {display: none;}
em {display: block;}
</style>
</head>
<body>
<p>Paragraph 1</p>
<p id="p2">Paragraph 2</p>
<p>Paragraph 3</p>
Here is an <em>em tag.</em> Another <em>em tag.</em>
</body>
</html>