Border Bottom
border-bottom: sets the width, color, and style on the bottom border of an element.
Example
<html>
<head>
<style type="text/css">
p
{
border-style:solid;
</style>
</head>
<body>
<p>My work will be such that in the face of death I can say, 'Lord, I am ready'.</p>
</body>
</html>
<head>
<style type="text/css">
p
{
border-style:solid;
border-bottom:thick dotted #ff0000;
}</style>
</head>
<body>
<p>My work will be such that in the face of death I can say, 'Lord, I am ready'.</p>
</body>
</html>
Output
My work will be such that in the face of death I can say, 'Lord, I am ready'.
No comments:
Post a Comment