HTML&CSS - background-image border each
by Code_Garage
HTML
<div class="container" id="example">Lorem ipsum</div>
CSS
body {
min-height: 600px;
}
.container {
font-family: arial;
font-weight: bold;
width: 100px;
height: 100px;
margin: 5px;
padding: 5px;
box-sizing: border-box;
}
#example {
border-left: 4px solid red;
border-top: 4px solid orange;
border-right: 4px solid lightgreen;
border-bottom: 4px solid darkblue;
}