Loose-Info.com
Last Update 2007/01/16
TOP - CSS1(Cascading Style Sheets, level 1) - border-bottom-width

要素の下端のボーダーの幅を指定します。
デフォルトはmediumです。

設定値
thin : 幅薄線 medium : 普通 thick : 幅厚線 数値

(例)
<HTML> <HEAD> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE>テスト</TITLE> <STYLE type="text/css"> <!-- .test1 {font: 16pt monospace; border-style: solid; border-bottom-width: thin} .test2 {font: 16pt monospace; border-style: solid; border-bottom-width: medium} .test3 {font: 16pt monospace; border-style: solid; border-bottom-width: thick} .test4 {font: 16pt monospace; border-style: solid; border-bottom-width: 10px} --> </STYLE> </HEAD> <BODY> <P><SPAN class="test1">abcde あいうえお</SPAN></P> <BR> <P><SPAN class="test2">abcde あいうえお</SPAN></P> <BR> <P><SPAN class="test3">abcde あいうえお</SPAN></P> <BR> <P><SPAN class="test4">abcde あいうえお</SPAN></P> </BODY> </HTML>