w3resource

CSS Properties: How to set the width and length of the bottom border?

Go to Exercise page

Solution:

HTML Code:

<!DOCTYPE html><!-- Declaration of HTML5 document type -->
<html>
<head>
<title>How to set the width of the bottom border</title><!-- Title of the HTML document -->
<style>/* CSS style start*/
h1  {
    border-style: solid; /* Specifies a solid border style for the h1 element */
    border-bottom-width: 15px; /* Sets the width of the bottom border to 15 pixels */
}
</style>
</head>
<body>
<h1>CSS, stands for Cascading Style Sheet is a computer language to describe presentation.</h1><!-- h1 element with text content -->
</body>
</html>

Explanation:

  • This HTML document demonstrates how to set the width of the bottom border of an <h1> element.
  • The CSS style block applies styling to all <h1> elements in the document.
  • border-style: solid; specifies a solid border style for the <h1> element.
  • border-bottom-width: 15px; sets the width of the bottom border to 15 pixels.
  • As a result, all <h1> elements in the document will have a solid border with a width of 15 pixels at the bottom.

Live Demo:

See the Pen border-bottom-width-length-answer by w3resource (@w3resource) on CodePen.


See the solution in the browser

Supported browser

Firefox logo Chrome logo Opera logo Safari logo Internet Explorer logo
Yes Yes Yes Yes Yes

Go to Exercise page

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.