Last updated on October 5, 2019
Definition :
Which is meant for when we have to give the background color to the content.
Program :
<html>
<style type=”text/css”>
div
{
/*
border: 5px solid red;
border: 5px dashed red;
border: 5px dotted red;
border: 5px none red;
border: 5px double red;
*/
border: 5px double red;
width: 500px;
height: 500px;
}
</style>
<body>
<div> Hello </div>
</body>
</html>
Be First to Comment