CSS dimension minimum width

04:40 0 Comments A+ a-

<html>
<head>
<style type="text/css">
p
{
min-width:50px;
}
</style>
</head>

<body>
<p>The minimum width of this paragraph is set to 50px.</p>
</body>
</html>

Result