Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. /**
  2. * Flexbox and ellipsis
  3. */
  4. ul {
  5. display: flex
  6. list-style: none;
  7. white-space: nowrap; /* Stops line wrapping */
  8. }
  9. li {
  10. overflow: hidden; /* Prevents overflow from expanding container */
  11. border: 1px solid #eee;
  12. text-overflow: ellipsis; /* needed on flexbox child */
  13. }
  14. a {
  15. display: inline; /* Must be inline to ellipsise */
  16. margin-right: 1em;
  17. font-size: 2em;
  18. text-decoration: none;
  19. }
  20.  
  21. p {
  22. margin: 2em;
  23. border: 1px solid #eee;
  24. padding: 2em;
  25. }
  26. p:hover {
  27. color: red;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement