Let the text with CSS div living at the bottom

css for layout of text on not by the parameters align the bottom of the container, is currently a good way to use better. is to use the position property to solve, look at the following code, with the relative and absolute positioning position is also easily achieved , close to the text div align the lower part, and is close to the distance also can be accurate to the pixel, you can adjust, it is not very good?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<! 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 >无标题文档</ 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 >aadsad</ p >
</ div >
</ body >
</ html >

Guess you like

Origin www.cnblogs.com/turnip/p/11595803.html