Guest User

Untitled

a guest
Oct 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. // solution 1
  2. h2 {
  3. width: min-content;
  4. white-space: nowrap;
  5. }
  6. p {
  7. white-space: normal;
  8. }
  9.  
  10. // solution 2
  11. h2 {
  12. display: table;
  13. }
  14. p {
  15. display: table-caption;
  16. caption-side: bottom;
  17. }
Add Comment
Please, Sign In to add comment