Assign1 Css

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

.

fimg img{
width: 80px;
}

.headerImg{
animation: imgRotator;
animation-duration: 20000ms;
animation-iteration-count: infinite;
}
.headerImg img{
width: 100px;
}
@keyframes imgRotator {
0%{
transform: rotate(0deg); border: 2px solid blue;
}

100%{
transform: rotate(360deg); border: 4px dashed red;
}
}
.bodyImg img{
width: 50%;
}

You might also like