25 lines
818 B
HTML
25 lines
818 B
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>
|
|
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
|
|
<title>Div Width Auto</title>
|
|
<style type='text/css'>
|
|
div {
|
|
width: auto;
|
|
background: pink;
|
|
color: red;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>Love never claims, it ever gives;<br>
|
|
love never suffers, never resents,<br>
|
|
never revenges itself.<br>
|
|
Where there is love there is life;<br>
|
|
hatred leads to destruction.<br><br>
|
|
|
|
Mahatma Gandhi</div>
|
|
</body>
|
|
</html>
|
|
|