Advertisement
gavin19

Test_CSS

Mar 1st, 2012
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.06 KB | None | 0 0
  1. body{width:100%;height:100%;}
  2. #container1 {
  3. margin-right:auto;
  4. margin-left:auto;
  5. width:80%;
  6. min-width:80%;
  7. height:75%;
  8. display:block;
  9. }
  10. #leftcolumn{
  11. /*All friends list / profile data will go here */
  12. float:left;
  13. position:relative;
  14. top:50px;
  15. border:5px solid #A80000;
  16. //padding:400px 5px;
  17. background:#FFFFF;
  18. width:25%;
  19. min-width:25%;
  20. height:75%;
  21. border-radius:25px;
  22. display:block;
  23. }
  24. .profiledetails { }
  25. #rightcolumn {
  26. /*Status updates / other subscribed topics go here */
  27. float:left;
  28. position:relative;
  29. top:50px;
  30. border:5px solid #A80000;
  31. //padding:400px 150px;
  32. background:#FFFFF;
  33. width:68%;
  34. min-width:68%;
  35. height:75%;
  36. border-radius:25px;
  37. display:block;
  38. }
  39. #spacer{
  40. height:75%;
  41. position:relative;
  42. top:50px;
  43. display:block;
  44. float:left;
  45. width:2%;
  46. min-width:2%;
  47. }
  48.  
  49. <div id="container1">
  50. <div id="leftcolumn">
  51.  
  52.         <div id ="profiledetails"<li> <a href='userprofile.php'></a></li> </div>
  53.  
  54.  
  55. </div>
  56. <div id="spacer"></div>
  57.  
  58. <div id="rightcolumn">
  59.  
  60.      <div id ="statusupdates"<li> <a href='forums.php'></a></li> </div>
  61.  
  62. </div>
  63. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement