The code below shows you how to set the style of the left border with CSS.
<!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:lang="en" lang="en">
<head>
<title>Web Development Tutorials.com</title>
<style type="text/css">
p.dotted {border-left-style: dotted;}
p.dashed {border-left-style: dashed;}
p.solid {border-left-style: solid;}
p.double {border-left-style: double;}
p.groove {border-left-style: groove;}
p.ridge {border-left-style: ridge;}
p.inset {border-left-style: inset;}
p.outset {border-left-style: outset;}
</style>
</head>
<body>
<p class="dotted">
This paragraph has a dotted style left border.
</p>
<p class="dashed">
This paragraph has a dashed style left border.
</p>
<p class="solid">
This paragraph has a solid style left border.
</p>
<p class="double">
This paragraph has a double style left border.
</p>
<p class="groove">
This paragraph has a groove style left border.
</p>
<p class="ridge">
This paragraph has a ridge style left border.
</p>
<p class="inset">
This paragraph has a inset left border.
</p>
<p class="outset">
This paragraph has a outset left border.
</p>
</body>
</html>
The code above creates the paragraphs below.
This paragraph has a dotted style left border.
This paragraph has a dashed style left border.
This paragraph has a solid style left border.
This paragraph has a double style left border.
This paragraph has a groove style left border.
This paragraph has a ridge style left border.
This paragraph has a inset style left border.
This paragraph has a outset style left border.
Use the text editor below to practice what you have learned.