http://rabbitinblack.com/2011/12/css-text/
อื่นๆ
การจัดรูปให้อยู่ตรงกลาง ทั้ง แนวตั้งและแนวนอน ด้วย CSS
<style type="text/css">
.wraptocenter {
display: table-cell;
text-align: center;
vertical-align: middle;
width: ...;
height: ...;}
.wraptocenter * {
vertical-align: middle;
}/*\*//*/
.wraptocenter {
display: block;
}
.wraptocenter span {
display: inline-block;
height: 100%;
width: 1px;
}/**/
</style>
<!--[if lt IE 8]><style>
.wraptocenter span {
display: inline-block;
height: 100%;
}
</style><![endif]-->
โค้ต html
<div class="wraptocenter"><span></span><img src="..." alt="..."></div>