Horje
rotate image html Code Example
rotate image html
.img {
transform: rotate(90deg);
}
rotate image html
<img src="your image" style="transform:rotate(90deg);">
how to rotate image in css
div {
  position: absolute;
  left: 40px;
  top: 40px;
  width: 100px;
  height: 100px;
  background-color: lightgray;
}

.rotate {
  background-color: transparent;
  outline: 2px dashed;
  transform: rotate(45deg);
}

.rotate-translate {
  background-color: pink;
  transform: rotate(45deg) translateX(180px);
}

.translate-rotate {
  background-color: gold;
  transform: translateX(180px) rotate(45deg);
}




Css

Related
reset a tag css Code Example reset a tag css Code Example
get company id odoo Code Example get company id odoo Code Example
overflow dots css Code Example overflow dots css Code Example
css list remove dot Code Example css list remove dot Code Example
css 100% -20px Code Example css 100% -20px Code Example

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