<!DOCTYPE html>
<html>
<head>
<style>
p
{
border-style:solid;
}
p.none {border-left-style:none;}
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>
<h1>border-left-style 属性</h1>
<p class="none">无底左界。</p>
<p class="dotted">点左边界。</p>
<p class="dashed">虚线左边界。</p>
<p class="solid">实线左边界。</p>
<p class="double">双线左边界。</p>
<p class="groove">凹槽左边界。</p>
<p class="ridge">垄状左边界。</p>
<p class="inset">嵌入左边界。</p>
<p class="outset">外凸左边界。</p>
</body>
</html>