html - Element width and text centering -


i'm working html , need insert heading centered on page color-filled, width-limited background, color-fill of heading element not cover whole of page space.
heres code:

<head>  <h1 style="text-align:center;background-color: white;max-width: 500px;">support</h1>  </head> 

as code goes, centers text within limits of element width , not page. entire page has background image, want remain uncovered possible. can center text excluding width limit causes element background pass through width of page. want color-filled heading element background in order text pop page background.

you might try putting div around it, like

<div style="width:100%;margin:auto;text-align:center">your h1 tag here</div> 

also, pamblam said: don't put in <head> tag, in <body> tag.


Comments