Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css rotate 180 degrees

.rotateimg180 {
  -webkit-transform:rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
Comment

css rotate 90 degrees

.my-div{
  transform: rotate(90deg); /* rotate x-axis and y-axis */
  transform: rotateX(180deg); /* rotate x-axis */
  transform: rotateY(180deg); /* rotate y-axis */
}
Comment

PREVIOUS NEXT
Code Example
Css :: show max word with css 
Css :: css hide text if too long 
Css :: css a link remove underline 
Css :: absolute vertical position css 
Css :: css bold text 
Css :: styling scrollbar css 
Css :: grid auto sizing 
Css :: css center image 
Css :: css flex center horizontally and vertically 
Css :: flexbox 3 columns 
Css :: 2 lines p css 
Css :: media query for mobile view css 
Css :: remove the glow in bootstrap input 
Css :: centering div horizontally 
Css :: disable text wrap css 
Css :: make text unhighlightable 
Css :: how to get an angled section end css 
Css :: excel arabic numbers 
Css :: remove arrow summary tag css 
Css :: css text color border 
Css :: rounded input css 
Css :: bring element to front css 
Css :: how to blur background image in css 
Css :: div circle 
Css :: css animate flashing 
Css :: center image css 
Css :: absolute position div center 
Css :: css photo circle 
Css :: css grow animation 
Css :: css root variables 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =