1. 程式人生 > >div內容底部對齊

div內容底部對齊

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>CSS實現文字底部對齊</title>
<style type="text/css">
#txt{
 height:246px;
 width:512px;
 border:1px solid #000000;
 position:relative 

}
#txt span{
 position:absolute;
 bottom:10px;
 padding:0px;
 margin:0px
}
</style>
</head> 
<body>
<div id="txt">
<span><a href="#" target="_blank">網頁特效ggg</a></span>
</div>
</body>
</html>