最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

css border-right-width属性怎么用

来源:动视网 责编:小采 时间:2020-11-02 22:14:53
文档

css border-right-width属性怎么用

css border-right-width属性怎么用:css border-right-width属性定义及用法在css中,border-right-width属性是用来设置元素右边框宽度的,当我们要单独调整元素右边框的宽度的时候就可以使用该属性(注意:在使用border-right-width属性设置元素边框宽度之前,必须定义右边框(border-r
推荐度:
导读css border-right-width属性怎么用:css border-right-width属性定义及用法在css中,border-right-width属性是用来设置元素右边框宽度的,当我们要单独调整元素右边框的宽度的时候就可以使用该属性(注意:在使用border-right-width属性设置元素边框宽度之前,必须定义右边框(border-r

css border-right-width属性定义及用法

在css中,border-right-width属性是用来设置元素右边框宽度的,当我们要单独调整元素右边框的宽度的时候就可以使用该属性(注意:在使用border-right-width属性设置元素边框宽度之前,必须定义右边框(border-right-style属性),不然没有边框就没有边框宽度,border-right-width属性就不会有效果)。

css border-right-width属性语法格式

css语法:border-right-width: thin / medium / thick / length / inherit

JavaScript语法:object.style.borderRightWidth="thin / medium / thick / length / inherit"

css border-right-width属性值说明

thin:设置右边框为细小的

medium:设置右边框为中等(默认)

thick :设置右边框为粗大的

length:自定义右边框的宽度(如:10px;)

inherit:从父元素继承右边框宽度

实例

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>css border-right-width设置右边框宽度属性笔记</title>
<style type="text/css">
body{background: #ddd;font-size:20px;}
#a,#b,#c,#d{margin-top:10px;width:300px;border-right-style:solid;}
#a{border-right-width:thin;}
#b{border-right-width:thick;}
#c{border-right-width:8px;}
</style>
</head>
<body>
<div id = "a">thin:设置右边框为细小的;</div>
<div id = "b">thick:设置右边框为粗大的;</div>
<div id = "c">自定义右边框的宽度为8px;</div>
</body>
</html>

运行结果

ee1b98882fee1d67254d1aefe3bab9c.png

文档

css border-right-width属性怎么用

css border-right-width属性怎么用:css border-right-width属性定义及用法在css中,border-right-width属性是用来设置元素右边框宽度的,当我们要单独调整元素右边框的宽度的时候就可以使用该属性(注意:在使用border-right-width属性设置元素边框宽度之前,必须定义右边框(border-r
推荐度:
标签: 设置 使用 属性
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top