Created
January 27, 2014 06:08
-
-
Save caok/8643896 to your computer and use it in GitHub Desktop.
如何让元素位于DIV内的底部
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="a"> | |
<ul> | |
<li class="b">位于底部</li> | |
</ul> | |
</div> | |
<style> | |
#a{ | |
width:200px; | |
height:200px; | |
position:relative; | |
} | |
.b{ | |
position:absolute; | |
bottom:0px; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
position-in-css