12 lines
189 B
CSS
12 lines
189 B
CSS
|
footer{
|
||
|
position:fixed;
|
||
|
width: 100%;
|
||
|
height: max-content;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
background-color: #000000;
|
||
|
color: white;
|
||
|
text-align: center;
|
||
|
padding-top: 5px;
|
||
|
padding-bottom: 5px;
|
||
|
}
|