CSS Properties: How to specify the double border?
Solution:
HTML Code:
<!DOCTYPE html><!-- Declaration of HTML5 document type -->
<html>
<head>
<title>How to specify the double border</title><!-- Title of the HTML document -->
<style type="text/css">/* CSS style start*/
h1.double {
border-width: 5px; /* Setting border width to 5 pixels for elements with class "double" */
border-style: double; /* Setting border style to "double" for elements with class "double" */
Border-color: #CC63FF /* Setting border color to #CC63FF for elements with class "double" */
}
</style>
</head>
<body>
<h1 class="double">Double border style</h1><!-- Heading with class "double" -->
</body>
</html>
Explanation:
- This HTML document demonstrates how to specify a double border for an element using CSS.
- The CSS style block defines styling for elements with class "double".
- border-width: 5px; sets the border width to 5 pixels for elements with class "double".
- border-style: double; sets the border style to "double" for elements with class "double".
- border-color: #CC63FF; sets the border color to #CC63FF (a shade of purple) for elements with class "double".
- The HTML content consists of a <h1> heading with class "double", demonstrating the specified double border style.
Live Demo:
See the Pen border-style-double-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-style-double-answer.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics