w3resource

CSS Properties: How to specify a thick bottom border?

Go to Exercise page

Solution:

HTML Code:

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

Explanation:

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

Live Demo:

See the Pen border-bottom-width-thick-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.