Guest User

Untitled

a guest
Feb 22nd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // <ul>
  2. // <li>First</li>
  3. // <li>Middle</li>
  4. // <li>Middle</li>
  5. // <li>Middle</li>
  6. // <li>Last</li>
  7. // </ul>
  8.  
  9. ul {
  10. $itemHeight:30px;
  11. display: block;
  12. position:relative;
  13. padding-top:$itemHeight;
  14. box-sizing:border-box;
  15. li {
  16. display:block;
  17. height:$itemHeight;
  18. &:last-child{
  19. position:absolute;
  20. top:0;
  21. }
  22. }
  23. }
Add Comment
Please, Sign In to add comment