Skip to content

Commit

Permalink
fix question example code for id: 587d78a7367417b2b2512ae0
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgeer committed Sep 21, 2021
1 parent cf98d8b commit c99edf8
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 0 deletions.
Expand Up @@ -15,6 +15,9 @@ dashedName: use-css-animation-to-change-the-hover-state-of-a-button

```html
<style>
img {
width: 30px;
}
img:hover {
animation-name: width;
animation-duration: 500ms;
Expand Down
Expand Up @@ -15,6 +15,9 @@ dashedName: use-css-animation-to-change-the-hover-state-of-a-button

```html
<style>
img {
width: 30px;
}
img:hover {
animation-name: width;
animation-duration: 500ms;
Expand Down
Expand Up @@ -15,6 +15,9 @@ Here's an example of changing the width of an image on hover:

```html
<style>
img {
width: 30px;
}
img:hover {
animation-name: width;
animation-duration: 500ms;
Expand Down
Expand Up @@ -15,6 +15,9 @@ Aquí hay un ejemplo de como cambiar el ancho de una imagen al pasar sobre ella:

```html
<style>
img {
width: 30px;
}
img:hover {
animation-name: width;
animation-duration: 500ms;
Expand Down
Expand Up @@ -15,6 +15,9 @@ Ecco un esempio di cambiamento della larghezza di un'immagine quando ci si passa

```html
<style>
img {
width: 30px;
}
img:hover {
animation-name: width;
animation-duration: 500ms;
Expand Down
Expand Up @@ -15,6 +15,9 @@ Aqui está um exemplo de alteração da largura de uma imagem ao passar o cursor

```html
<style>
img {
width: 30px;
}
img:hover {
animation-name: width;
animation-duration: 500ms;
Expand Down

0 comments on commit c99edf8

Please sign in to comment.