<!DOCTYPE html>
<html>
<head>
<style>
p {border-style: solid;}
p.none {border-bottom-style: none;}
p.dotted {border-bottom-style: dotted;}
p.dashed {border-bottom-style: dashed;}
p.solid {border-bottom-style: solid;}
p.double {border-bottom-style: double;}
p.groove {border-bottom-style: groove;}
p.ridge {border-bottom-style: ridge;}
p.inset {border-bottom-style: inset;}
p.outset {border-bottom-style: outset;}
</style>
</head>
<body>
<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>