css border-bottom-width属性
翻译结果:
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
width
英 [wɪdθ] 美 [wɪdθ, wɪθ, wɪtθ]
n.宽度;广度
复数: widths
css border-bottom-width属性语法
作用:设置元素的下边框的宽度。
说明:只有当边框样式不是 none 时才起作用。如果边框样式是 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>
运行实例 »
点击 "运行实例" 按钮查看在线实例