We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Не работает вывод новостей Не показывается задний фон. Вот как в коде сейчас
.background { background-image: url('bg.jpg'); background-repeat: no-repeat; background-attachment: fixed; background-size: cover; filter: blur(5px); -webkit-filter: blur(5px); }
<div class="background"></div>
Тобишь, задний фон задается пустому блоку background, и если в блоке ничего нет, то фона и не будет (но это не точно). Предлагаю заменить на:
body { background-image: url('bg.jpg'); background-repeat: no-repeat; background-attachment: fixed; background-size: cover; filter: blur(5px); -webkit-filter: blur(5px); }
А блок в html удалить полностю.
The text was updated successfully, but these errors were encountered:
я это сделал только для работы фильтра blur (спойлер: он не заработал), а фон прогружался и так, я проверял
но я уже исправил это, так что issue закрываю
Sorry, something went wrong.
No branches or pull requests
Не работает вывод новостей
Не показывается задний фон. Вот как в коде сейчас
Тобишь, задний фон задается пустому блоку background, и если в блоке ничего нет, то фона и не будет (но это не точно).
Предлагаю заменить на:
А блок в html удалить полностю.
The text was updated successfully, but these errors were encountered: