bzwerg
Neues Mitglied
Hallo zusammen,
ich versuche seit längerer Zeit eine DIV-Box per CSS zu gestalten, damit die Höhe abhängig vom Inhalt ist. Ich habe ein Bild in einer Box. Die Box selbst hat eine Background-color: grau mit 0,5 transparenz. Das Bild soll dahinter liegen und wenn ich das Browserfenster vergrößere soll die Box genauso groß sein wie das Bild. Aktuell wächst das Bild, aber nicht die Box. Eine statische Höhe habe ich natürlich nicht verbaut:
<html>
<head>
<style>
.fullscreen-bg__img {
position: absolute;
top: 50%;
left: 50%;
width: auto;
min-width: 100%;
min-height: 580px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
z-index: -1;
}
.banner{
background-size: cover;
min-height: 580px;
position: relative;
}
.bg-color{
background-color: RGBA(40, 40, 40, 0.5);
min-height: 580px;
}
</style>
</head>
<body>
<div class="banner">
<div class="bg-color">
<img src="https://www.popoptiq.com/wp-content/uploads/2013/04/oblivion-3-600x316.jpg" class="fullscreen-bg__img">
</div>
</div>
</body>
</html>
ich versuche seit längerer Zeit eine DIV-Box per CSS zu gestalten, damit die Höhe abhängig vom Inhalt ist. Ich habe ein Bild in einer Box. Die Box selbst hat eine Background-color: grau mit 0,5 transparenz. Das Bild soll dahinter liegen und wenn ich das Browserfenster vergrößere soll die Box genauso groß sein wie das Bild. Aktuell wächst das Bild, aber nicht die Box. Eine statische Höhe habe ich natürlich nicht verbaut:
<html>
<head>
<style>
.fullscreen-bg__img {
position: absolute;
top: 50%;
left: 50%;
width: auto;
min-width: 100%;
min-height: 580px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
z-index: -1;
}
.banner{
background-size: cover;
min-height: 580px;
position: relative;
}
.bg-color{
background-color: RGBA(40, 40, 40, 0.5);
min-height: 580px;
}
</style>
</head>
<body>
<div class="banner">
<div class="bg-color">
<img src="https://www.popoptiq.com/wp-content/uploads/2013/04/oblivion-3-600x316.jpg" class="fullscreen-bg__img">
</div>
</div>
</body>
</html>