Search
 
SCRIPT & CODE EXAMPLE
 

CSS

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>
Comment

double border css

.double-border{
	border: double;
}
Comment

PREVIOUS NEXT
Code Example
Css :: justify center wont wotk with max-width css 
Css :: center block div 
Css :: box position in center css 
Css :: fixed div with scrollable content 
Css :: focus selector css 
Css :: transparent button css 
Css :: css auto heigh div 
Css :: bootstrap 4 material icon vertical align 
Css :: jquery add external css to head 
Css :: css set font family for all elements 
Css :: cursor as image css 
Css :: how to move anything left in css 
Css :: wordpress theme my login redirect after login 
Css :: arrow left css 
Css :: css chevron arrow 
Css :: css for disabled button 
Css :: what are types of positioning in css 
Css :: center things with css 
Css :: css animation linear 
Css :: outline bottom css 
Css :: how to make a responsive box in css 
Css :: golden color css 
Css :: css put background on top of another background image 
Css :: css table size 
Css :: container transparent text opaque 
Css :: cool gradient 
Css :: css background transparent blur 
Css :: css animate svg circle radius 
Css :: background center 
Css :: border-width 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =