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)
未经允许不得转载:主机测评网 » css怎么设置边框长度
分享到: 更多 (0)