I would like to put a white bar which would take all of the width at the bottom of the screen. To do so I thought about using absolute positioning with the inhe
absolute
The first step would be to add
position: 'absolute',
then if you want the element full width, add
left: 0, right: 0,
then, if you want to put the element in the bottom, add
bottom: 0, // don't need set top: 0
if you want to position the element at the top, replace bottom: 0 by top: 0
bottom: 0
top: 0