Never been to TextSnippets 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

« Newer Snippets
Older Snippets »
1 total  XML / RSS feed 

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 textdiv>
</div>


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


// or without table (only firefox, .. / not in internet explorer <=6!)
<div style="display:table-cell;        vertical-align: middle">the textdiv>
« Newer Snippets
Older Snippets »
1 total  XML / RSS feed