CSS Properties: How to specify a thin bottom border?
Solution:
HTML Code:
<!DOCTYPE html><!-- Declaration of HTML5 document type -->
<html>
<head>
<title>How to specify a thin 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:thin; /* Sets the width of the bottom border to thin */
}
</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 thin 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:thin; sets the width of the bottom border to thin.
- As a result, all <div> elements in the document will have a solid border with a thin width at the bottom.
Live Demo:
See the Pen border-bottom-width-thin-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.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics