css實現文字垂直置中的代碼第1/2頁

來源:互聯網
上載者:User

CSS中怎樣設定才能使對象中的文字垂直置中於對象,這個問題也是捆擾很多朋友的難題。現在網上的很多代碼都做不到瀏覽器安全色。我把網上有關的方法整理了一下,做了些改動,完全可以相容各主流瀏覽器。
下面具體說一下在不同情況下垂直置中的方法。
一、一行文字垂直置中
看一下下面的代碼: 複製代碼 代碼如下:<!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=gb2312" />
<title>指令碼之家-css垂直置中</title>
<script type="text/javascript" language="javascript">
function sel(id) {switch(id) {case "1":document.getElementById("sub").style.lineHeight = "normal";break;case "2":document.getElementById("sub").style.lineHeight = "20px";break;case "3":document.getElementById("sub").style.lineHeight = "28px";break;}}
</script>
<style type="text/css">
#all {
width:240px;
padding:10px;
font-size:12px;
color:#FFF;
background-color:#CCC;
}
#sub {
width:230px;
padding:0 5px;
height:20px;
overflow:hidden;
background-color:#F90;
}
#sel {
margin-top:5px;
}
select {
width:260px;
}
</style>
</head>

<body>
<div id="all">
<div id="sub">一行文字垂直置中,此對象高度為20px</div>
</div>
<div id="sel"><select onchange="sel(this.value)"><option value="1">預設值,設定行高為:normal</option><option value="2">設定行高和對象高度相同:20px</option><option value="3">設定行高比對象的高度大:28px</option></select></div>
</body>
</html>

方法:line-height:20px。設定相同的行高和對象高度。

說明:這種設定簡單又相容各種瀏覽器,支援內聯對象。但如果是固定高度的對象,只能顯示一行。當有兩行文字時,如果不設定“overflow:hidden”會把對象撐開。
二、多行文字,且高度自適應
請看下面的代碼: xmlns="http://www.w3.org/1999/xhtml">


三行文字垂直置中,設定相同的內上邊距padding-top和內下邊距padding-bottom就可以。三行文字垂直置中兩行文字垂直置中一行文字垂直置中

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.