p width:40em; : p layout « Tags « HTML / CSS






p width:40em;

     
<?xml version="1.0" encoding="iso-8859-1"?>
<!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">
<head>
<title>CSS Example</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type='text/css'>
body {
  font-family: arial, verdana, sans-serif;
  background-color: #efefef;
}

h1 {
  color: #666666;
  font-size: 22pt;
}

p {
  color: #999999;
  font-size: 10pt;
}

p.important {
  border: solid black 1px;
  background-color: #ffffff;
  padding: 5px;
  margin: 15px;
  width: 40em;
}
</style>


</head>

<body>
<h1>Simple CSS Example</h1>
<p>This simple page demonstrates how CSS can be used to control the presentation of an XHTML document.</p>
<p class="important">This paragraph demonstrates the use of the <code>class</code> attribute.</p>
</body>
</html>

   
    
    
    
    
  








Related examples in the same category

1.Set width for a paragraph
2.p min-width: 500px;
3.p width: 245px;
4.Set width and height for paragraph
5.p line-height: 1em;
6.Set line height of a Paragraph in content section
7.p max-height: 50px;
8.p line-height: 3em;
9.p height: 245px;
10.p line-height: 2.0;
11.Paragraph with different line-height
12.This paragraph is floated left
13.p float:left;
14.p float:right;
15.p float: left;
16.P display: block;
17.p display:none;
18.p overflow: visible;
19.p overflow: auto;
20.p overflow: scroll;
21.p overflow: hidden;
22.p white-space: nowrap;
23.p white-space: pre;