Rumah  >  Artikel  >  hujung hadapan web  >  css border-bottom-width属性如何使用

css border-bottom-width属性如何使用

silencement
silencementasal
2019-05-29 16:33:042810semak imbas

在css中,border-bottom-width属性是用来设置元素的底部边框宽度。

css border-bottom-width属性如何使用

css border-bottom-width属性值

thin:细的下边框;

medium:中等的下边框(默认值);

thick :粗的下边框;

length:允许您自定义下边框的宽度;

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

语法格式:

border-bottom-width:thin / medium / thick / length / inherit ;

注意:元素必须有边框才可以改变宽度(border-bottom-width属性单独使用没有效果.,要先使用border-style属性设置样式)。

实例

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>css border-bottom-width属性笔记</title>
<style>
#bbw {
border-style:solid;
border-bottom-width:10px;
}
</style>
<head/>
<body>
<p id="bbw">css border-bottom-width属性演示</p>
</body>
</html>

运行结果

f07d824f084d6569487590efd2953a6.png

Atas ialah kandungan terperinci css border-bottom-width属性如何使用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Artikel sebelumnya:css text-decoration-color属性怎么用Artikel seterusnya:css top属性怎么用