Answers for "inline rotate css"

CSS
12

rotate css

div {
  width: 80px;
  height: 80px;
  background-color: skyblue;
}

.tourne {
  transform: rotate(45deg); /* Équivalent à rotateZ(45deg) */
  background-color: pink;
}
Posted by: Guest on August-08-2020
0

rotate css

.rotate {
    animation: rotation 1s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
Posted by: Guest on November-05-2021
1

css rotate

a:hover:before {
            -webkit-transform:rotate(360deg);
            -moz-transform:rotate(360deg);
            -o-transform:rotate(360deg);
}
Posted by: Guest on July-22-2021
0

rotate css

.dialog-close-button.dialog-lightbox-close-button::after{
    
    background-image: url('http://psifass.appupgo.co.il/wp-content/uploads/2021/12/indoor-hotel-view-Large.png');
    display: block;
    height: 40px;
    width: 40px;
    content:"";
    /*transform: rotate(48deg);*/
    font-family: assistant;
    color: #FFF;
    font-weight: 300;
    font-size: 98px;
    margin-left: 10px;
}
Posted by: Guest on December-22-2021

Browse Popular Code Answers by Language