Horje
css rotate 180 degrees Code Example
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
html center video Code Example html center video Code Example
css background image size to fit screen Code Example css background image size to fit screen Code Example
z-index max value Code Example z-index max value Code Example
write text in one line css Code Example write text in one line css Code Example
not last child css Code Example not last child css Code Example

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