In this article I am describes about how to place the footer at the bottom ofthe page. A simple method using valid CSS to keep your footer at the bottom ofthe page. after a few years of practice I have finallyfigured out a neat way to do it. My method uses 100% valid CSS and it works inall standards compliant browsers. It also fails gracefully with older browsersso it's safe to use on any website.
<style type="text/css">
footer {
position: fixed;
left: 0px;
bottom: 0px;
height: 30px;
width: 100%;
background: #333;
color: white;
text-align: center;
}
</style>
Post your comments / questions
Recent Article
- How to create custom 404 error page in Django?
- Requested setting INSTALLED_APPS, but settings are not configured. You must either define..
- ValueError:All arrays must be of the same length - Python
- Check hostname requires server hostname - SOLVED
- How to restrict access to the page Access only for logged user in Django
- Migration admin.0001_initial is applied before its dependency admin.0001_initial on database default
- Add or change a related_name argument to the definition for 'auth.User.groups' or 'DriverUser.groups'. -Django ERROR
- Addition of two numbers in django python
Related Article