外枠の上部分に対して、線の太さを指定します。
IE4 / IE5 / IE5.5 / IE6 / N6 / N7 / O6 / O7 / O9 / Fx1 / Fx2 / IE5 mac
要素[.class名][#id名]{ border-top-width : 値; }
値 | 初期値 | 意味 |
数値+単位 | 太さを指定します。単位例:px,em,ex | |
thin | 細い線になります。 | |
medium | ○ | thinより太く、thickより細い線になります。 |
thick | 太い線になります。 | |
inherit | 親要素の値を継承します。 |
<html> <head> <title>サンプルコード</title> <style type="text/css"> #sample1 { border-top-width : 20px; } #sample2 { border-top-width : thin; } #sample3 { border-top-width : medium; } #sample4 { border-top-width : thick; } #sample div { border-style : solid; border-top-color : red; padding : 5px; width : 50%; } </style> </head> <body> <div id="sample"> <div id="sample1">【 border-top-width : 20px 】</div> <br> <div id="sample2">【 border-top-width : thin 】</div> <br> <div id="sample3">【 border-top-width : medium 】</div> <br> <div id="sample4">【 border-top-width : thick 】</div> </div> </body> </html>
border-top / border-top-color / border-top-style