apolineaire
7/21/2018 - 5:38 PM

Border on link hover without moving the element

Border on link hover without moving the element

/*1. Add a transparent border without the hover, give it color on hover*/
item{
  border: 3px solid transparent;
}
item:hover{
  border: 3px solid inherit;
}

/*2. Using 'box-sizing' but then you have to define the width and the height*/
item {
    box-sizing: border-box;
}

item:hover {
    border-top: 3px solid #d0d0d0;
}
/*3. Substracting margin with a value of the border (in px)*/
item:hover{
  border: 3px solid inherit;
  margin: -3px;
}