Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css rotate 90 deg

transform: rotate(90deg);
Comment

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 :: JS make text not highlightable 
Css :: give transition on box shadow 
Css :: button on top right corner css 
Css :: css trim text 
Css :: media query tablet only 
Css :: ufw allow from subnet 
Css :: media queries on mobile 
Css :: grid center align 
Css :: css background image position vertical center 
Css :: scss not working with storybook 
Css :: how to center an overlay button using flex box 
Css :: font size css 
Css :: ipad specific media query 
Css :: responsive font size 
Css :: css media screen 
Css :: css unlock scroll 
Css :: align items in span to center 
Css :: ngx-charts change text color 
Css :: css color gradient background full height 
Css :: grid repeating auto columns 
Css :: how to show ... after some long chars js html h1 
Css :: mat radio button color 
Css :: a tag taking up all the width of the page 
Css :: Hide first of type elements using css , how to hide elements using css 
Css :: how to print hello world with css 
Css :: animate font weight css 
Css :: remove hover css on a text 
Css :: image resize css 
Css :: awesome font google icon colored css 
Css :: centos 8 cron on reboot 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =