I have created an HTML page and linked this to CSS. I have my background within the CSS file as follows:
body {
background-image:url('../Images/Bdos.jpg');
background-size:100%;
background-repeat:no-repeat;
background-attachment:fixed;
transform:rotate(90deg);
}
However, the transform:rotate(90deg)
instead rotates the content in the HTML file. Any idea what may be the cause of the problem or what should be done to rotate the image alone??