Set max width in HTML and CSS

Description

The following code shows how to set max width.

Example


<html>
<head>
<style type='text/css'>
p {<!-- w  ww .j  av a  2  s .c o  m-->
padding: 10px;
margin: 10px;
border: thin solid black;
width: auto;
max-width: 500px;
}
</style>
</head>
<body>
<p>
You have to know how to accept rejection and reject acceptance.
- Ray Bradbury
</p>
</body>
</html>

Click to view the demo

The code above generates the following result.

Set max width in HTML and CSS