好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

用CSS让文字居于div的底部_html/css_WEB-ITnose

css对文字的布局上没有靠容器底部对齐的参数,目前使用的一个不错的方法也比较好.就是用position属性来解决,看下面的代码,用position的相对和绝对定位功能也轻松的实现了,文字靠近div低部对齐,并且靠近的距离还可以精确到像素,自己可以调节,是不是很不错呢?

"http://www.w3.org/TR/html4/loose.dtd">



无标题文档

#txt{

height:300px;
width:300px;
border:1px solid #333333;
text-align:center;
position:relative

}
#txt p{
position:absolute;
bottom:0px;
padding:0px;
margin:0px
}





aadsad


查看更多关于用CSS让文字居于div的底部_html/css_WEB-ITnose的详细内容...

  阅读:32次