Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> body { margin: 10px; } .box { background: url("https://images.unsplash.com/photo-1507919909716-c8262e491cde?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60") no-repeat; background-size: cover; height: 90px; width: 300px; border: 2px solid #000000; transform: rotate(110deg) translate(150px, -230px); } h1 { color: #000000; } </style> </head> <body> <h1> W3Docs </h1> <strong> How to apply multiple transforms in CSS? </strong> <div class="box"></div> </body> </html>