CSS border-top-width 属性

CSS border-top-width 属性是用于设置盒模型的上边框的宽度。


实例

设置上边框的宽度:

  1. <html>
  2. <head>
  3. <style type="text/css">
  4. p.one
  5. {
  6. border-style: solid;
  7. border-top-width: 15px
  8. }
  9. p.two
  10. {
  11. border-style: solid;
  12. border-top-width: thin
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <p class="one"><b>注释:</b>"border-top-width" 属性如果单独使用的话是不会起作用的。请首先使用 "border-style" 属性来设置边框。</p>
  18. <p class="two">Some text. Some more text.</p>
  19. </body>
  20. </html>

浏览器支持

表格中的数字注明了完全支持该属性的首个浏览器版本。

属性
border-top-width1.04.01.01.03.5

注释:IE7 以及更早版本的浏览器不支持值 "inherit"。IE8 需要 !DOCTYPE。IE9 支持 "inherit"。


定义和用法

border-top-width 属性设置元素的上边框的宽度。

只有当边框样式不是 none 时才起作用。如果边框样式是 none,边框宽度实际上会重置为 0。不允许指定负长度值。

注释:请始终在 border-top-width 属性之前声明 border-style 属性。元素只有在获得边框之后,才能改变其边框的宽度。

默认值:medium
继承性:no
版本:CSS1
JavaScript 语法:object.style.borderTopWidth="thick"

可能的值

描述
thin定义细的上边框。
medium默认值。定义中等的上边框。
thick定义粗的上边框。
length允许您自定义上边框的宽度。
inherit规定应该从父元素继承边框宽度。

相关页面

CSS 教程:CSS 边框

CSS 参考手册:border-top 属性

分类导航