Guest User

Untitled

a guest
Dec 15th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <div class="container_1">
  2. <h3> 1st element </h3>
  3. </div>
  4. <div class="container_2">
  5. <p> some other elements</p>
  6. <div class="container_3">
  7. <p> some other elements</p>
  8. <h3>2nd element</h3>
  9. <h4>[The 1st element should in here]</h4>
  10. </div>
  11. </div>
  12.  
  13. .container_1, .container_2, .container_3 {
  14. min-width: 200px;
  15. min-height: 200px;
  16. border: solid 2px lightblue;
  17. margin: 10px;
  18. }
  19. .container_2 {
  20. border: solid 2px gray;
  21. }
  22. .container_3 {
  23. border: solid 2px chocolate;
  24. }
Add Comment
Please, Sign In to add comment