Display Bottom-right:
How can you display your text or image in a fixed position.This can be done through padding and margin.But in case your div will expand, the text will move from their position.
You can handle your div with the following property:
.Mydiv
{
padding: 0px;
margin: 0px;
position: absolute;
bottom:10px;
right: 7px;
}
There is no need of set the padding or margin.
Display top-left:
.Mydiv
{
padding: 0px;
margin: 0px;
position: absolute;
bottom:10px;
right: 7px;
}
No comments:
Post a Comment