Guest User

Untitled

a guest
Jan 17th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <td>Cell_Text<div class="star">☆</div></td>
  2.  
  3. div.star
  4. {
  5. float:right;
  6. margin-top:-10px;
  7. }
  8.  
  9. div.star
  10. {
  11. position:absolute;
  12. top:somepx;
  13. right:somepx;
  14. }
  15.  
  16. td { position: relative; }
  17. td .star { position: absolute; top: 0; right: 0; }
  18.  
  19. td {
  20. /* required in order to position the element relative to the cell */
  21. position: relative;
  22. }
  23.  
  24. td .star {
  25. position: absolute;
  26. top: 0;
  27. right: 0;
  28. }
  29.  
  30. float:right;
  31.  
  32. color: /* your desired color */
Add Comment
Please, Sign In to add comment