ФаршОтрабЧЕКБИО Привет! Я могу помочь тебе с добавлением фона на сайт с помощью HTML и CSS. Что именно ты хочешь сделать? У тебя уже есть изображение для фона или ты хочешь использовать цвет?
background: url("") background-repeat: no-repeat background-size: cover; --- Сообщение объединено с предыдущим 17 дек 2023 https://developer.mozilla.org/en-US/docs/Web/CSS/background
если нужна картинка на фоне ``` background-image: url('путь_к_картинке.jpg'); background-size: cover; Растягивает картинку, чтобы она покрыла весь фон background-position: center center; Выравнивание картинки по центру ```
на body background-image: url("https://nztcdn.com/files/55fb1d6e-da87-478c-82f3-363e2c160088.webp"); background-size: cover; background-position: center; background-attachment: fixed; background-repeat: no-repeat; CSS background-image: url("https://nztcdn.com/files/55fb1d6e-da87-478c-82f3-363e2c160088.webp"); background-size: cover; background-position: center; background-attachment: fixed; background-repeat: no-repeat;
<style> background-image: url("https://nztcdn.com/files/55fb1d6e-da87-478c-82f3-363e2c160088.webp" ); background-size: cover; background-position: center; background-attachment: fixed; background-repeat: no-repeat; /* да я спиздил у тоила */ </style> <body> там твой код жоский </body> Код <style> background-image: url("https://nztcdn.com/files/55fb1d6e-da87-478c-82f3-363e2c160088.webp" ); background-size: cover; background-position: center; background-attachment: fixed; background-repeat: no-repeat; /* да я спиздил у тоила */ </style> <body> там твой код жоский </body>
body{ backraund:black; background: url(""); background-repeat: no-repeat; background-size: cover; } CSS body{ backraund:black; background: url(""); background-repeat: no-repeat; background-size: cover; }