将水平列表垂直居中放置在div中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将水平列表垂直居中放置在div中相关的知识,希望对你有一定的参考价值。
To centre, make "line-height" the same as the div height.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <title>Untitled Document</title> <style> #links{ border: 1px solid #eee; height: 50px; line-height: 50px; } #links ul { margin: 0px; padding: 0px; float: left; list-style-type: none; } #links ul li { margin-right: 20px; padding: 0px; display: inline; } </style> </head> <body> <div id="links"> <ul> <li><a href="#">Link 1 </a></li> <li><a href="#">Link 2 </a></li> <li><a href="#">Link 3 </a></li> </ul> </div> </body> </html>
以上是关于将水平列表垂直居中放置在div中的主要内容,如果未能解决你的问题,请参考以下文章
如何在没有绝对定位的情况下将主体元素内的 div 垂直和水平居中? [复制]