style.css 469 B

1234567891011121314151617181920212223242526272829303132
  1. .main {
  2. width: 350px;
  3. height: 220px;
  4. padding: 15px 10px 20px 10px;
  5. margin-bottom: 30px;
  6. border: dotted 2px red;
  7. background-color: green;
  8. }
  9. .text {
  10. text-align: justify;
  11. }
  12. .left {
  13. height: 130;
  14. width: 220;
  15. float: left;
  16. margin-right: 15px;
  17. margin-bottom: 15px;
  18. }
  19. .right {
  20. padding: 0px;
  21. height: 100px;
  22. width: 200px;
  23. float: right;
  24. margin-top: 15px;
  25. margin-left: 15px;
  26. margin-bottom: 10px;
  27. }