Если вы используете это CSS, он автоматически настроит фон для зрителя, чтобы соответствовать его экрану (отзывчиво)
<style>
body {
background-image: url("example.jpg"); /* The image used */
background-color: #cccccc; /* Used if the image is unavailable */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Do not repeat the image */
background-size: cover; /* Resize the background image to cover the entire container */
background-attachment: fixed; /* makes the background position fixed */
}
</style>
<html>
<body>
<!-- put your html here !-->
</body>
</html>
Я полагаю, это лучше, чем поворот фона, но если вы действительно хотите я думаю, что для поворота фона можно использовать что-то вроде этого.
<style>
body {
background-image: url("example.jpg"); /* The image used */
background-color: #cccccc; /* Used if the image is unavailable */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Do not repeat the image */
background-size: cover; /* Resize the background image to cover the entire container */
background-attachment: fixed; /* makes the background position fixed */
transform: rotate(15deg);
}
</style>
<html>
<body>
<!-- put your html here !-->
</body>
</html>