border-bottom

CSS border-bottom Property

The border-bottom property is a shorthand property for defining the width, style, and color of the bottom border. You can change places of the values. But the right order is when you set the width, the style and then the color of the border-bottom. If you don’t define the style of your border, the color will not work, because an element must have a border before you change the color of it.

If you don’t mention the width, it will automatically choose a medium size. If the color is not specified, it will understand the parent color, and if the style is not specified, it will not work.

类目类目
Initial Valuemedium none currentColor
Applies toAll elements.
InheritedNo.
AnimatableYes. The color and the width of the border-bottom are animatable.
VersionCSS1
DOM Syntaxobject.style.borderBottom = “15px dotted blue”;

Syntax

Syntax

border-bottom: border-width | border-style | border-color | initial | inherit;

Example of the border-bottom property:

<!DOCTYPE html>
<html>
  <head>
    <style>
      h2 {
        border-bottom: 8px groove #1c87c9;
      }
    </style>
  </head>
  <body>
    <h2>A heading with a groove blue bottom border.</h2>
  </body>
</html>

Result

Example of using the border-bottom property with <h2>, <p> and <div> elements:

<!DOCTYPE html>
<html>
  <head>
    <style>
      h2 {
        border-bottom: 5px dashed #1c87c9;
      }
      p {
        border-bottom: 8px double #8ebf42;
      }
      div {
        border-bottom: 10px ridge #ccc;
      }
    </style>
  </head>
  <body>
    <h2>A heading with a dashed blue bottom border.</h2>
    <p>A paragraph with a double green bottom border.</p>
    <div>A div element with a ridge gray bottom border.</div>
  </body>
</html>

Result

Values

Values

ValueDescription
border-bottom-styleDefines the style of the bottom border. Default value is “none”.
border-bottom-widthDefines the width of the bottom border. Default value is “medium”.
border-bottom-colorDefines the color of the bottom border. Default value is the color of the text.
initialSets the property to its default value.
inheritInherits the property from its parent element.


请遵守《互联网环境法规》文明发言,欢迎讨论问题
扫码反馈

扫一扫,反馈当前页面

咨询反馈
扫码关注
返回顶部