Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css flip text

transform: scaleX(-1);
Comment

flip something css

<div class="flip">
  <div class="flip-content">
    <div class="flip-front">
      <img src="https://www.fillmurray.com/150/150" />
    </div>
    <div class="flip-back">
      <strong>BILL MURRAY</strong>
    </div>
  </div>
</div>

.flip {
    width: 100%;
    }
    .flip-content {
    transition: transform 0.4s;
    transform-style: preserve-3d;
    }
    .flip:hover .flip-content {
    transform: rotateY(180deg);
    transition: transform 0.3s;
    }
    .flip-front, .flip-back {
    backface-visibility: hidden;  
    }
    .flip-back {
    transform: rotateY(180deg);
    }
Comment

PREVIOUS NEXT
Code Example
Css :: second scrollbar appears 
Css :: how to scale down background image in css 
Css :: Push an existing folder to git 
Css :: how to make auto scroll to the end in css 
Css :: border not showing css 
Css :: bootstrap Changing the separator 
Css :: flexbox gap 
Css :: css position sticky 
Css :: css super smooth shadow 
Css :: select all class in css 
Css :: css feather border 
Css :: css line spacing 
Css :: responsive flexbox in css 
Css :: postcss-preset-env: end value has mixed support, consider using flex-end instead 
Css :: change bot description background top.gg 
Css :: is better use px or pt 
Css :: how to place a table in center in css 
Css :: css comment 
Css :: relier css html 
Css :: css vertical align center 
Css :: css change background color of page 
Css :: not checked css 
Css :: center a button wordpress 
Css :: edit hover with sass 
Css :: css last item should be flex end 
Css :: css prevent scrolling behind overlay 
Css :: color code for cyan 
Css :: rgba green color 
Css :: Resetting Default Table Styles 
Css :: import google fonts into react 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =