Advertisement
Guest User

Untitled

a guest
Jan 15th, 2012
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.89 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4.     <title>home</title>
  5.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6.     <meta name="description" content="" />
  7.     <meta name="keywords" content="" />
  8.     <style type="text/css">
  9. .message {
  10.     padding: 10px 10px 10px 10px;
  11.     margin: 10px;;
  12.     /*min-width: 90%;
  13.     min-height: 100px;
  14.     */
  15.     height: 100%;
  16.    
  17.     background: pink;
  18.     border-radius: 10px;
  19. }
  20.  
  21. .message-user-info {
  22.     padding: 10px 10px 10px 10px;
  23.     min-height: 100px;
  24.     min-width: 100px;
  25.     background: lightgreen;
  26.     border-radius: 10px;
  27.    
  28.     float: left;
  29. }
  30.  
  31. .message-container {
  32.     padding: 10px 10px 10px 10px;
  33.     min-height: 100px;
  34.     min-width: 300px;
  35.    
  36.     background: black;
  37.     border-radius: 10px;
  38.     margin-left: 140px;
  39. }
  40.  
  41.  
  42. .message-title {
  43.     padding: 10px 10px 10px 10px;
  44.     min-height: 100px;
  45.     background: cyan;
  46.     border-radius: 10px;
  47. }
  48.  
  49. .message-body {
  50.     padding: 10px 10px 10px 10px;
  51.     min-height: 100px;
  52.     background: white;
  53.     border-radius: 10px;
  54. }
  55.  
  56. .message-info {
  57.     padding: 10px 10px 10px 10px;
  58.     min-height: 100px;
  59.     background: brown;
  60.     border-radius: 10px;
  61.  
  62. }
  63. </style>
  64.     </head>
  65.     <body>
  66.         <div id="container">
  67.                 <div class='message'>
  68.         <div class='message-user-info'>
  69.             Posts: 49230
  70.         </div>
  71.        
  72.         <div class='message-container'>
  73.             <div class='message-title'>
  74.                 title
  75.             </div>
  76.             <!-- <hr/> -->
  77.             <div class='message-body'>
  78.                 content
  79.             </div>
  80.         </div>
  81.        
  82.         <div class='message-info'>
  83.             message-info
  84.         </div>
  85.     </div>
  86.         </div>
  87.     </body>
  88. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement