css - Align text centered at bottom of webpage -
footer { position: absolute; bottom: 8px; text-align: center; } i want footer centered @ bottom of webpage position seems override text-align.
the footer element block element. block elements take entire width of container it's in.
however, when block element set position: absolute or position: fixed, it'll shrink down small can get. default, it's aligned left of page.
just add style footer:
left: 0; right: 0;
Comments
Post a Comment