DIV+CSS垂直居中一個浮動元素
2014/9/30 11:25:08來源:三聯(lián)
場景:在一個固定高度的div中,有一個浮動的元素,需要將這個浮動元素垂直居中。
原始代碼如下:
代碼如下:
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
.wrapper{
width: 400px;
height: 300px;
background-color: #1f8dd6;
}
button{
float: right;
display: inline-block;
height: 50px;
width: 100px;
line-height: 50px;
}
</style>
</head>
<body>
<div class="wrapper">
<button>float right.</button>
</div>
</body>
</html>
現(xiàn)在只是簡單的設(shè)置這個button浮動,實(shí)現(xiàn)的效果看起來就像這樣:
現(xiàn)在需要將這個button在整個div里垂直居中。我的做法是在這個button外層加一個span,并且浮動這個span元素而不是之前的button。另外需要設(shè)置這個span的高和行高與外層div相同。
代碼如下:
span{
float: right;
height: 300px;
line-height: 300px;
}
現(xiàn)在應(yīng)該就變成這樣了:
完整代碼:
代碼如下:
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
.wrapper{
width: 400px;
height: 300px;
background-color: #1f8dd6;
}
span{
float: right;
height: 300px;
line-height: 300px;
}
button{
float: right;
display: inline-block;
height: 50px;
width: 100px;
line-height: 50px;
}
</style>
</head>
<body>
<div class="wrapper">
<span>
<button>float right.</button>
</span>
</div>
</body>
</html>
[教程作者:佚名]
免責(zé)聲明:本站文章系圖趣網(wǎng)整理發(fā)布,如需轉(zhuǎn)載,請注明出處,素材資料僅供個人學(xué)習(xí)與參考,請勿用于商業(yè)用途!
本文地址:http://m.likemindfilms.com/tutorial/wd2223.html
本文地址:http://m.likemindfilms.com/tutorial/wd2223.html
這些是最新的
最熱門的教程