Сообщение от Georka
|
Скажите как наложить сетку(как понял, повторяется) на фоновое изображение(как понял, не повторяется)?
|
<!doctype html>
<html>
<head>
<style>
html {
background-color: #418BCA;
background-repeat: no-repeat;
background-size: cover;
background-image: url("http://r-g.esy.es/templates/web/images/backgrounds/1.jpg");
height: 100%;
}
body {
background-color: transparent;
background-repeat: repeat;
background-size: 5px;
background-image: url("http://r-g.esy.es/templates/web/images/noise.png");
height: 100%;
margin: 0;
}
</style>
</head>
<body></body>
</html>