CSS - outline 属性



描述

outline 属性是一个简写属性,用于设置元素周围轮廓的宽度、颜色和样式。

可能的值

  • <outline-color> - 属性 outline-color 的任何允许值。
  • <outline-style> - 属性 outline-style 的任何允许值。
  • <outline-width> - 属性 outline-width 的任何允许值。

适用于

所有 HTML 元素。

DOM 语法


object.style.outline = "thin solid red";

这是个例子 -


<html>
	 	<head>
	 	</head> 		
	 	<body>
	 	 	 <p style = "outline: thin solid red; padding: 10px">
	 	 	 	 	This text is having thin solid red outline.
	 	 	 </p>
	 	 	 <p style = "outline: thick dashed #009900; padding: 10px">
	 	 	 	 	This text is having thick dashed green outline.
	 	 	 </p>
	 	 	 <p style = "outline: 5px dotted rgb(13,33,232); padding: 10px">
	 	 	 	 	This text is having 5px dotted blue outline.
	 	 	 </p>
	 	</body>
</html>