Loose-Info.com
Last Update 2007/01/16
TOP - CSS1(Cascading Style Sheets, level 1) - border-left-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: 40pt monospace; border-style: solid; border-left-width: thin} .test2 {font: 40pt monospace; border-style: solid; border-left-width: medium} .test3 {font: 40pt monospace; border-style: solid; border-left-width: thick} .test4 {font: 40pt monospace; border-style: solid; border-left-width: 10px} --> </STYLE> </HEAD> <BODY> <P><SPAN class="test1">あ</SPAN></P> <BR> <P><SPAN class="test2">あ</SPAN></P> <BR> <P><SPAN class="test3">あ</SPAN></P> <BR> <P><SPAN class="test4">あ</SPAN></P> </BODY> </HTML>