ul {
	margin : 0px;
	padding : 0px;
}
li {
	width : 100px;
	height : 100px;
	list-style-type : none;
	position : relative;
	background-color : pink;
	margin : 10px;
	float : left;
	overflow : hidden;
	cursor : pointer;
}
div {
	width : 100px;
	height : 100px;
	background-color : #dddddd;
	text-align : center;
	position : absolute;
	top : 80px;
	left : 0px;
	transition : all 0.2s linear 0s;
	-ms-transition : all 0.2s linear 0s;
	-moz-transition : all 0.2s linear 0s;
	-webkit-transition : all 0.2s linear 0s;
	-o-transition : all 0.2s linear 0s;
}
li:hover div {
	top : 0px;
}