Advertisement
GWibisono

soal 1 - benerin css

Apr 25th, 2012
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.58 KB | None | 0 0
  1. <style>
  2. #container {   
  3.     background-color:#FFF; 
  4.     min-height:100px;  
  5.     border-bottom-right-radius:10px;
  6.     border-bottom-left-radius:10px;
  7.     border-top-right-radius:10px;
  8.     border-top-left-radius:10px;
  9.     -moz-box-shadow: 0 0 5px #333;
  10.     -webkit-box-shadow: 0 0 5px #333;
  11.     box-shadow: 0 0 5px  #333;
  12. }
  13.  
  14. .kiri{
  15.     float:left;
  16.     width:400px;
  17.     margin:10px;
  18. }
  19. .kanan{
  20.     float:right;
  21.     width:400px;
  22.     margin:10px;
  23. }
  24. </style>
  25. <div id='container' style='margin:auto; width:940px;'>
  26.  
  27.     <div class='kiri'>
  28.         Tulisan Kiri
  29.     </div>
  30.     <div class='kanan'>
  31.         tulisan kanan
  32.     </div>
  33. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement