温馨提示×

css怎么设置边框的宽度

css
清风
241
2021-03-11 13:13:43
栏目: 编程语言

css怎么设置边框的宽度

css设置边框的宽度的方法:

在css中可以使用border-width属性来设置边框的宽度。

示例:

<!DOCTYPE html>

<html>

<head>

<style>

div{

border-width:10px;//设置边框的宽度

border-style:dashed;//边框的线型

border-color:#03B;//边框的颜色

}

</style>

</head>

<body>

<div>边框长度</div>

</body>

</html>


0