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

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

javascript - cocos2d-js draw circle not instantly -