I\'m trying to implement a design in CSS that will have a tiled background on the body. I want to use a png image in the content background as an oval-shaped opacity mask o
As per your screenshot
you can write like this:
body{
background: url(image.jpg) repeat center center;
}
.container{
width:500px;
margin:0 auto;
}
UPDATED:
Solution according to your question Three column layout: fixed width center with fluid side columns
But it's work in modern browsers
UPDATED
it's work in all browsers