Welcome aboard! We are happy you are here and wish you good net-raft!
<!DOCTYPE html>
<html>
<head>
<style>
#test1
{
border: 5px dotted red;
padding: 40px;
background: green;
background-clip: content-box;
}
</style>
</head>
<body>
<div id="test1">
<h2>CSS</h2>
</div>
</body>
</html>
or
<!DOCTYPE html>
<html>
<head>
<style>
#test1
{
border: 5px dotted red;
padding: 40px;
background: green;
background-clip: padding-box;
}
</style>
</head>
<body>
<div id="test1">
<h2>CSS</h2>
</div>
</body>
</html>
The most helpful CSS solutions
How to set bootstrap popover borders in css ?CSS Click to see more ... 1.4K 91