Advertisement
flaviomartins

Untitled

Mar 4th, 2021
1,235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.39 KB | None | 0 0
  1. dl {
  2.     display: flex;
  3.     flex-flow: row;
  4.     flex-wrap: wrap;
  5.     overflow: visible;
  6. }
  7.  
  8. dl dt {
  9.     flex: 0 0 12.5%;
  10.     text-overflow: ellipsis;
  11.     overflow: hidden;
  12. }
  13.  
  14. dl dd {
  15.     flex:0 0 87.5%;
  16.     margin-left: auto;
  17.     text-align: left;
  18.     text-overflow: ellipsis;
  19.     overflow: hidden;
  20. }
  21.  
  22. @media only screen and (max-width: 768px) {
  23.     dl dt {
  24.         flex: 0 0 30%;
  25.     }
  26.     dl dd {
  27.         flex: 0 0 70%;
  28.     }
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement