0
I would like to know how to overlay one image on another and center it, and I am using different Ivs for filter:Lur(25px); do not extend to the logo either (drunkerslogo.png)however I am having difficulty centralizing the drunkerslogo.png inside the fundobackground.png (superimposed)
follows the css file
body {
background: black;
}
#site {
width: auto;
border: 1px solid red;
background: black;
}
#background {
width: 100%;
height: 1080px;
border: 1px solid red;
background: url(imagens/fundobackground.png) no-repeat;
background-size: cover;
filter: blur(25px);
}
#logo {
width: 540px;
height: 540px;
border: 1px solid red;
}
and html
Drunkers<body>
<div id="site">
<div id="primeira-parte">
<div id="background"></div>
<div><img src="imagens/drunkerslogo.png" id="logo"></div>
</div>
</div>
</body>
"border" is for my best view of the items
Thank you very much :D, I was a little confused regarding the use of the position:, but now it gave to understand
– fyxel