border

UK[ˈbɔ:də(r)] US[ˈbɔ:rdə(r)]

n.ボーダー; エッジ; エッジ; ラッピング エッジ

vt.& vi....の端でバインド...

vt. の端に沿って、囲む...、端...

vi近似、隣接

三人称単数: borders 複数形: borders 現在分詞: bordering 過去形: bordered 過去分詞: bordered

bottom

英[ ˈbɒtəm] 美[ˈbɑ:təm]

n. Bottom; end; hip; end

adj.

vt の底部. 底部を取り付ける; 深さを測定する;真実を見つけよう

vi. 底に到達する; 基盤を確立する

三人称単数:bottoms 複数形:bottoms 現在分詞:bottoming 過去形:bottomed 過去分詞:bottomed

width

UK[wɪdθ] US[wɪdθ, wɪθ, wɪtθ]

n.Width; width

複数形: widths

css border-bottom-width プロパティ 構文

機能:要素の下端の幅を設定します。

注: 境界線のスタイルが none ではない場合にのみ機能します。境界線のスタイルがなしの場合、境界線の幅は実際には 0 にリセットされます。負の長さの値は許可されません。

注: 常に border-bottom-width 属性の前に border-style 属性を宣言します。要素は、境界線を取得した後にのみ境界線の幅を変更できます。

css border-bottom-width プロパティ 例

<html>
<head>
<style type="text/css">
p.one 
{
border-style: solid;
border-bottom-width: 15px
}
p.two 
{
border-style: solid;
border-bottom-width: thin
}
</style>
</head>
<body>

<p class="one"><b>注释:</b>"border-bottom-width" 属性如果单独使用的话是不会起作用的。请首先使用 "border-style" 属性来设置边框。</p>
<p class="two">Some text. Some more text.</p>

</body>
</html>

インスタンスの実行 »

[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します