border

英 [ˈbɔ:də(r)]   美 [ˈbɔ:rdə(r)]  

n.边界;边;镶边;包边

vt.& vi.与…接界,在…的边上

vt.沿…的边,环绕…,给…镶边

vi.近似,毗邻

第三人称单数: borders 复数: borders 现在分词: bordering 过去式: bordered 过去分词: bordered

bottom

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

n.底部;末端;臀部;尽头

adj.底部的

vt.装底;测量深浅;查明真相

vi.到达底部;建立基础

第三人称单数: bottoms 复数: bottoms 现在分词: bottoming 过去式: bottomed 过去分词: bottomed

javascript borderBottom属性 语法

作用:为下边框设置所有的属性。

语法:Object.style.borderBottom=borderWidth borderStyle borderColor

参数:borderWidth    设置边框的宽度。borderStyle    设置边框的样式。borderColor    设置边框的颜色。

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>

运行实例 »

点击 "运行实例" 按钮查看在线实例