To jest moja strona URLLekka skrzynka kolor tła powinien obejmować cały ekran za pomocą CSS
Na tej stronie, jeśli kliknij przycisk Zaloguj się wyświetli ekran popup z czarnym tłem. Ale jeśli pomniejszymy stronę, to zmniejsza ona rozmiar koloru tła. Ale chcę pomniejszyć tło całego ekranu. Użyłem kodu poniżej na mojej stronie.
.black_overlay{
display: none;
position: absolute;
top: 0%;
left: 0%;
width: 100%;
height: 2000%;
background-color: black;
z-index:1001;
-moz-opacity: 0.8;
opacity:.80;
filter: alpha(opacity=80);
}
Ale na stronie testowej poniższy kod służy do pokrycia całego tła. To działa dobrze.
<style type="text/css">
/*give the body height:100% so that its child
elements can have percentage heights*/
body{ height:100% }
/*this is what we want the div to look like*/
div.fullscreen{
display:block;
/*set the div in the top-left corner of the screen*/
position:absolute;
top:0;
left:0;
background-color: black;
/*set the width and height to 100% of the screen*/
width:100%;
height:100%;
color: white;
}
</style>
<div class="fullscreen">
<p>Here is my div content!!</p>
</div>
Jak mogę zrobić to samo dla mojego tła strony logowania, nie wiem. Każdy może pomóc mi rozwiązać ten problem.
Jak umieścić swój formularz logowania? Czy to jest wewnątrz stołu? – SubRed
dlaczego 'wysokość: 2000%'? –
jeśli podaję wysokość w wysokości 200%, to po prostu zatrzymam tło powyżej nagłówka. – Rithu