css怎么设置边框的宽度 css怎么设置边框长度

主机教程 建站分享 2年前 (2022-10-01) 213次浏览

文章摘要:css怎么设置边框的宽度 css怎么设置边框长度

css设置边框的宽度的方法: 在css中可以使用border-width属性来设置边框的宽度。 示例: &lt […]

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>


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:css怎么设置边框的宽度 css怎么设置边框长度
文章链接:http://www.7966.org/post/13512.html
转载请注明出处

喜欢 (0)