CSS - border-top-width 属性



设置元素的上边框的宽度。

可能的值

  • length − 任何长度单位。此属性的长度单位不能为负数。
  • thin − 比设置为中等的边框更薄的边框。
  • medium  − 比设置为薄的边框厚的边框厚,比设置为厚的边框更薄的边框。
  • thick  − 比设置为中等的边框更厚的边框。

适用于

所有 HTML 元素。

DOM 语法


object.style.borderTopWidth = "2px";

以下示例演示了border-top-width属性 -


<html>
<head>
	 	<style>
	 	 	 h2{
	 	 	 	 	 	border-style: dotted;
	 	 	 	 	 	border-top-width: 5px;
	 	 	 	}
	 	 	 	p {border-style: solid;
	 	 	 	 	 border-top-width: thin;
	 	 	 	 	 }

	 	</style>
</head>
<body>
	 	 	 <h2>border-top-width (single-side)</h2>
	 	 	 <p>Different border widths on all sides. Check the width at the top of the element.</p>
</body>
</html>