How do I adapt a gradient background image with a resolution of 150x150.
The background image is divided into several parts, as I manage to adapt the gradient image correctly.
body {
margin: 0;
padding: 0;
background: url(http://dominointernet.s3.amazonaws.com/web/wp-content/uploads/2013/07/home-slider-bg-gris.png) center center fixed;
}
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<div>contenido, contenido</div>
</body>
</html>
Here you have it in RGB, I hope it helps you!
Try adding
html,body{ height:100%; }
in your css file and removing
center center fixed
from the propertybackground
in the body