Advertisement
Guest User

Untitled

a guest
Apr 16th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.45 KB | None | 0 0
  1. div{
  2.    position:absolute;
  3.    border:5px solid black;
  4.    width:400px;
  5.     height:400px;
  6. }
  7. div > div{
  8.     position:absolute;
  9.     width:150px;
  10.     height:150px;
  11. }
  12. div:nth-child(1){
  13.     border:3px solid blue;
  14.     top:10%;
  15. }
  16. div:nth-child(2){
  17.     border:3px solid magenta;
  18.     top:15%;
  19. }
  20. div:nth-child(3){
  21.     border:3px solid green;
  22.     top:5%;
  23.     left:15%;
  24. }
  25. div:nth-child(4){
  26.     border:3px solid #afdfdf;
  27.     top:10%;
  28.     right:10%;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement