Horje
css rotate 90 degrees Code Example
css rotate 90 deg
transform: rotate(90deg);
css rotate 180 degrees
.rotateimg180 {
  -webkit-transform:rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
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 */
}




Css

Related
how to apply linear gradient to text in css Code Example how to apply linear gradient to text in css Code Example
not the first child and not the last child css Code Example not the first child and not the last child css Code Example
align div to right side of parent Code Example align div to right side of parent Code Example
resize checkbox Code Example resize checkbox Code Example
perfect circle css Code Example perfect circle css Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13