“CSS pairar” Respostas de código

SCSS pairar

.class {
    margin:20px;
    &:hover {
        color:yellow;
    }
}
Clever Crane

CSS pairar

<input class = "spin" type="image" src="(IMAGE URL)" width="42" height="42" alt="a" title"Transform 360 deg. image!">

<style>
.spin:hover {
height: 60px;
width: 60px;
transition: .5s;
transform: rotate(360deg);
}
</style>

<!-- You can remove the height and width elements in the CSS style tag if you wish. -->
ayaan

Cool Hover Efeitos CSS

.i {
    color: #fff;
    font-size: 35px;
    margin: 15px 15px 0 15px;
    transition: 0.2s;
    transition-property: color, transform;
}

i:hover {
    color: #FF5733;
    transform: scale(1.3);
}
srk

CSS pairar

.a:hover{background-color: black;}
Happy Hippopotamus

CSS pairar

#element {
  transform: translateX(0px);
  background: #ffffff;
  transition: 0.5s;
}
#element:hover {
  transform: translateX(50px);
  background: #000000;
  transition: 0.5s;
}
koder

CSS pairar

hover
Dadi abdalkader

Respostas semelhantes a “CSS pairar”

Perguntas semelhantes a “CSS pairar”

Mais respostas relacionadas para “CSS pairar” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código