You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/css/Div float with width and he...

43 lines
1.2 KiB
HTML

<!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' xml:subLang='en'>
<head>
<title>Div Float With Width And Height</title>
<style type='text/css'>
div#container {
font: 16px arial;
margin: 0 20px;
background: pink;
width: 400px;
}
div#float {
background: rgb(169, 196, 155);
float: left;
border: 1px solid blue;
width: 120px;
height: 60px;
}
p {
margin-left: 80px;
border: 1px solid red;
}
</style>
</head>
<body>
<div id='container'>
<div id='float'>
Float text - O what a heaven is love! O what a hell! Thomas Dekker
</div>
<p>
Someday, after mastering the winds,<br>
the waves, the tides and gravity,<br>
we shall harness for God the energies of love,<br>
and then, for a second time in the history of the world,<br>
man will have discovered fire.<br><br>
Pierre Teilhard de Chardin
</p>
</div>
</body>
</html>