Guest User

Untitled

a guest
Oct 12th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. /**
  2. * Illustrating correct & wrong inner border-radius
  3. */
  4.  
  5. .outer {
  6. padding: 10px;
  7. margin: 50px;
  8. border: 1px solid silver;
  9. box-shadow: 0 0 10px gray;
  10. border-radius: 20px;
  11. }
  12.  
  13. div div {
  14. padding: 30px;
  15. background: slategray;
  16. font-size: 200%;
  17. font-weight: bold;
  18. color: white;
  19. border-radius:10px;
  20. }
  21.  
  22. .outer.wrong div {
  23. border-radius: inherit;
  24. }
Add Comment
Please, Sign In to add comment