Answers for "how to merge the border with background color in html"

CSS
0

double border color css

.double-border {
  display: block;
  clear: both;
  background: red;
  border: 5px solid yellow;
  outline: 5px solid blue;
  transition: 0.7s all ease-in;
  height: 50px;
  width: 50px;
}
.double-border:hover {
  background: yellow;
  outline-color: red;
  border-color: blue;
}
<div class="double-border"></div>
Posted by: Guest on April-21-2021

Code answers related to "how to merge the border with background color in html"

Browse Popular Code Answers by Language