border
UK[?b?:d?(r)] US[?b?:rd?(r)]
n.ボーダー; エッジ; エッジ; ラッピング エッジ
vt.& vi....の端でバインド...
vt. の端に沿って、囲む...、端...
vi近似、隣接
三人稱単數(shù): borders 複數(shù)形: borders 現(xiàn)在分詞: bordering 過去形: bordered 過去分詞: bordered
bottom
英[ ?b?t?m] 美[?bɑ:t?m]
n. Bottom; end; hip; end
adj.
vt の底部. 底部を取り付ける; 深さを測(cè)定する;真実を見つけよう
vi. 底に到達(dá)する; 基盤を確立する
三人稱単數(shù):bottoms 複數(shù)形:bottoms 現(xiàn)在分詞:bottoming 過去形:bottomed 過去分詞:bottomed
JavaScriptのborderBottomプロパティ 構(gòu)文
関數(shù): 下枠のすべてのプロパティを設(shè)定します。
#構(gòu)文: Object.style.borderBottom=borderWidth borderStyle borderColor
borderWidth 境界線の幅を設(shè)定します。 borderStyle は境界線のスタイルを設(shè)定します。 borderColor 境界線の色を設(shè)定します。 [インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示しますJavaScriptのborderBottomプロパティ 例
<html>
<head>
<style type="text/css">
p {border: thin dotted #FF0000}
</style>
<script type="text/javascript">
function changeBorder()
{
document.getElementById("p1").style.borderBottom="thick solid blue";
}
</script>
</head>
<body>
<input type="button" onclick="changeBorder()"
value="Change bottom paragraph border" />
<p id="p1">This is a paragraph with a border</p>
</body>
</html>
インスタンスの実行 ?