css对文字的布局上没有靠容器底部对齐的参数,不过可以使用position属性来解决。
以下代码用position的相对和绝对定位功能也轻松的实现了,文字靠近div底部对齐,并且靠近的距离还可以精确到像素,可以自己调节。
例子:
复制代码 代码示例:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>css实现文字div底部对齐</title>
<style type="text/css">
#txt{
height:300px;
width:300px;
border:1px solid #333333;
text-align:center;
position:relative
}
#txt p{
position:absolute;
bottom:0px;
padding:0px;
margin:0px
}
</style>
</head>
<body>
<div id=txt>
<p>http://www.jb200.com</p>
</div>
</body>
</html>