Last Update 2007/01/16
TOP - CSS1(Cascading Style Sheets, level 1) - border-top
上端のボーダーに関連するスタイルをまとめて設定します。
下記の項目を順番に関係なく任意に記述します。
(例)
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>テスト</TITLE>
<STYLE type="text/css">
<!--
.test1 {font: 24pt monospace; border-top: solid}
.test2 {font: 24pt monospace; border-top: solid fuchsia}
.test3 {font: 24pt monospace; border-top: thick solid red}
.test4 {font: 24pt monospace; border-top: dotted thick blue}
.test5 {font: 24pt monospace; border-top: green dashed thick}
-->
</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>
<BR>
<P><SPAN class="test5">abcde あいうえお</SPAN></P>
</BODY>
</HTML>