css div中内容绝对居中(多行内容)
div中的内容绝对居中(不适合IE6哦,IE6我已经不考虑了),直接看代码吧。
<!DOCTYPE HTML> <html> <head> <title>绝对居中 </title> <style type="text/css"> h1, h2, h3, h4, h5 { margin:0px; padding:0px; } .panel { width:300px; height:150px; background:#000; color:green; display:table; float:left; margin-right:30px; } .absolute-center { vertical-align:middle; display:table-cell; text-align:center; } </style> </head> <body> <div class="panel"> <div class="absolute-center"> <h1>LPJT</h1> <h5>(龙破九天)</h5> </div> </div> <div class="panel"> <div class="absolute-center"> <h1>XAJT</h1> <h5>(笑傲九天)</h5> </div> </div> </body> </html>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。