2017-05-06 5 views
0

Ich habe ein Problem mit meiner Sticky Footer am unteren Rand. Es funktioniert gut auf allen Browsern, aber nicht auf Safari ... warum ?? :(Bootstrap Reveal Footer Fixed funktioniert nicht auf Safari

#main{ 
background-color: #f0f0f0; 
box-shadow: 0px 20px 30px -20px rgba(0, 0, 0, 0.8); 
z-index: 1; 
position: relative; 
margin-bottom: 250px; 
} 

footer { 
height: 250px; 
z-index: -100; 
position: fixed; 
bottom: 0px; 
} 

Dank;)

Antwort

0

Ich habe es fest! Fügen Sie einfach diesen Code ...;)

html, body{ 
min-height: 100%; 
height: auto !important; 
height: 100%; 
} 

Danke trotzdem.