0

PLEASE help me to make this footer appear at the bottom of the page without "external" CSS

CSS

 #exefixedfooterdiv {
  background-color: yellow;
  overflow:none; 
  width:100%; 
  height:80px; 
  position:fixed;
  bottom:0%; 
  left:0%;}

HTML

<div id="exefixedfooterdiv" >
</div>
Falguni Panchal
  • 8,873
  • 3
  • 27
  • 33
Ghinnersmee
  • 101
  • 2

5 Answers5

0

you can write the inline CSS like mentioned below code :-

<div style="background-color: red;
; overflow:none; width:100%; height:80px; position:fixed; bottom:0%; left:0%;" >
</div>

DEMO

Shailender Arora
  • 7,674
  • 2
  • 31
  • 35
0

Write in-line styles.

<div style="position:absolute;width:100%;height:100px;background:#FF0000;bottom:0;" >
</div>

or according to your styles:

<div id="exefixedfooterdiv" style="background-color: yellow;
; overflow:none; width:100%; height:80px; position:fixed; bottom:0%; left:0%;"></div>

Demo here

Leo T Abraham
  • 2,407
  • 4
  • 28
  • 54
0

You can describe the styling inside the div:

<div style="background-color: yellow; overflow:none; width:100%; height:80px; position:fixed; bottom:0%; left:0%;" >

Paddyd
  • 1,870
  • 16
  • 26
0

Like this

DEMO

CSS

*{
    margin:0;
    padding:0;
}
#exefixedfooterdiv {background-color: yellow;
 overflow:none; width:100%; height:80px; position:fixed; bottom:0;
 }

HTML

<div id="exefixedfooterdiv" >
</div>
Falguni Panchal
  • 8,873
  • 3
  • 27
  • 33
0

you have to add z-index for position:fixed elements :

#exefixedfooterdiv {
   background-color: yellow;
   overflow:none; 
   width:100%; 
   height:80px; 
   position:fixed;
   bottom:0; 
   left:0;
   z-index: 999;
}
Shirin Abdolahi
  • 1,047
  • 8
  • 18