How to do a ' border onhover ' ?

Where in your HTML is that particular div element? Because the easiest way would be to do something like the following:

div.item:hover {
  border-width: 10px;
}
1 Like