Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <div>
  2. <button>
  3. <span><!-- using a div also works but is not valid HTML -->
  4. <span>Test</span>
  5. <span>Test</span>
  6. </span>
  7. </button>
  8. <p>
  9. <span>Test</span>
  10. <span>Test</span>
  11. </p>
  12. </div>
  13.  
  14. button > span, p {
  15. display: flex;
  16. flex-direction: row;
  17. justify-content: center;
  18. }
  19.  
  20. button::before,
  21. button::after {
  22. content: '';
  23. flex: 1 0 auto;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement