CSS Properties: How to specify a thick bottom border?
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
Yes | Yes | Yes | Yes | Yes |
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/html-css-exercise/css-properties/border-bottom-width-thick-answer.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics