How to Rotate Background Image

It is as simple as adding a before or after element inside a container

.container {
position: relative;
overflow: hidden;
}

.container::before {
content: “”;
position: absolute;
width: 100%;
height: 100%;
z-index: 10;
background: ur…


This content originally appeared on DEV Community and was authored by Abdullah Furkan Özbek

It is as simple as adding a before or after element inside a container

.container {
  position: relative;
  overflow: hidden;
}

.container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: url(background.jpg) 0 0 repeat;
  transform: rotate(30deg);
}


This content originally appeared on DEV Community and was authored by Abdullah Furkan Özbek


Print Share Comment Cite Upload Translate Updates
APA

Abdullah Furkan Özbek | Sciencx (2021-07-25T12:35:15+00:00) How to Rotate Background Image. Retrieved from https://www.scien.cx/2021/07/25/how-to-rotate-background-image/

MLA
" » How to Rotate Background Image." Abdullah Furkan Özbek | Sciencx - Sunday July 25, 2021, https://www.scien.cx/2021/07/25/how-to-rotate-background-image/
HARVARD
Abdullah Furkan Özbek | Sciencx Sunday July 25, 2021 » How to Rotate Background Image., viewed ,<https://www.scien.cx/2021/07/25/how-to-rotate-background-image/>
VANCOUVER
Abdullah Furkan Özbek | Sciencx - » How to Rotate Background Image. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/07/25/how-to-rotate-background-image/
CHICAGO
" » How to Rotate Background Image." Abdullah Furkan Özbek | Sciencx - Accessed . https://www.scien.cx/2021/07/25/how-to-rotate-background-image/
IEEE
" » How to Rotate Background Image." Abdullah Furkan Özbek | Sciencx [Online]. Available: https://www.scien.cx/2021/07/25/how-to-rotate-background-image/. [Accessed: ]
rf:citation
» How to Rotate Background Image | Abdullah Furkan Özbek | Sciencx | https://www.scien.cx/2021/07/25/how-to-rotate-background-image/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.