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

左端のボーダーに関連するスタイルをまとめて設定します。

下記の項目を順番に関係なく任意に記述します。
border-left-width
border-style
border-color

(例)
<HTML> <HEAD> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE>テスト</TITLE> <STYLE type="text/css"> <!-- .test1 {font: 48pt monospace; border-left: solid} .test2 {font: 48pt monospace; border-left: solid fuchsia} .test3 {font: 48pt monospace; border-left: thick solid red} .test4 {font: 48pt monospace; border-left: dotted thick blue} .test5 {font: 48pt monospace; border-left: green dashed thick} --> </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> <BR> <P><SPAN class="test5">あ</SPAN></P> </BODY> </HTML>