Never been to CodeSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

About this user

Oliver Haag www.ohcon.de

1 total

On This Page:

  1. 1 center text in html

center text in html

// center horizontally
// text-align:center for internet explorer, margin:auto for firefox

<div style="text-align:center">
  <div style="margin:auto">the text</div>
</div>


// center vertically with table
<table><tr><td valign="middle">the text</td></tr></table>


// or without table (only firefox, .. / not in internet explorer <=6!)
<div style="display:table-cell;	vertical-align: middle">the text</div>
1 total

On This Page:

  1. 1 center text in html