I was given the task of making a mobile web app, and I'm trying to do it with the help of Twitter Bootstrap. One of the tasks is to make a pair of buttons in the footer, both of equal size, each occupying half the width of the screen: just like in old Symbian.
Since I'm new to Bootstrap, I'm having a hard time trying to reach that goal. I tried to use some of the Sticky Footer example that has on the Bootstrap site itself, but I still have not had much success.
As recommended, follow the code (using Jade and Stylus for convenience):
.footer
.container
.btn-group.btn-group-lg
button.btn Sair
button.btn Opções
And the CSS related:
.footer
position absolute
bottom 0
width 90%
height 60px
By adding, my intention is to arrive at a result like this:
+------------------+
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
+--------+---------+
| Sair | Menu |
+------------------+