Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.59 KB | None | 0 0
  1. *{
  2.   margin: 0;
  3.   padding: 0;
  4. }
  5.  
  6. .tablei{
  7.   width: 800px;
  8.   border-spacing: 0px;
  9. }
  10.  
  11. .tdi{
  12.   border: 2px solid yellow;
  13. }
  14.  
  15. .tdi{
  16.   background-color: red;
  17.   width: 200px;
  18.   height: 50px;
  19. }
  20.  
  21. .tableii{
  22.   width: 900px;
  23.   border-spacing: 0px;
  24. }
  25.  
  26. .tdii{
  27.   border: 10px solid green;
  28. }
  29.  
  30. .tdii{
  31.   background-color: orange;
  32.   width: 300px;
  33.   height: 30px;
  34. }
  35.  
  36. .tableiii{
  37.   width: 1300px;
  38.   border-spacing: 0px;
  39. }
  40.  
  41. .tdiii{
  42.   border: 1px solid black;
  43. }
  44.  
  45. .tdiii{
  46.   background-color: white;
  47.   width: 100px;
  48.   height: 80px;
  49. }
  50.  
  51. table{
  52.   margin: 50px 0 50px 100px;
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement