I have a div to be positioned absolutely at the top left. What is the difference between the following two writing methods?
div{
position: absolute;
left:0;
top:0;
}
div{
position: absolute;
left:0;
top:0;
right:0;
bottom:0;
}