Advertisement
Tony-S

positioner sth. in relation to it's parent

May 7th, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.22 KB | None | 0 0
  1. /* positioner sth. in relation to it's parent */
  2.  
  3. .box {
  4.   position: relative;
  5.   margin: 5px;
  6.   width: 250px;
  7.   height: 80px;
  8.   border: 1px solid #000;
  9. }
  10.  
  11.   .description {
  12.     position: absolute;
  13.     left: 50px;
  14.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement