Saturday, August 17, 2013

CSS border swidth set

<html>
<head>
<style type="text/css">
p
{
border-style:solid;
border-left-width:30px;
}
</style>
</head>

<body>
<p><b>Note:</b> The "border-left-width" property does not work if it is used alone. Use the "border-style" property to set the borders first.</p>
</body>
</html>

Result

 

No comments: