Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 29th, 2012  |  syntax: None  |  size: 1.37 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Creating complex div structure using CSS
  2. <div class="result">
  3.     <div class="detail_1">
  4.         <p>Detail 1</p>
  5.     </div>
  6.     <div class="details">
  7.         <p>Details</p>
  8.     </div>
  9.     <div class="details">
  10.         <p>Details</p>
  11.     </div>
  12.     <div class="detail_2">
  13.         <p>Detail 2</p>
  14.     </div>
  15. </div>
  16.        
  17. <ul id="flights">
  18.  
  19. <li>
  20. <ul class="images">
  21.     <li><img src="img1" alt="your image" /></li>
  22.     <li><img src="img2" alt="your image 2" /></li>
  23. </ul>
  24.  
  25. <div class="flight_info" id="flight_EK49">
  26.     <div class="flight_number">
  27.         EK49
  28.     </div>  
  29.  
  30.     <table>
  31.        <thead>
  32.            <th>date</th>
  33.            <th>from</th>
  34.            <th>to</th>
  35.        </thead>
  36.        <tbody>
  37.         <tr>
  38.             <td>1/1/2013</td>
  39.             <td>departure airfield</td>
  40.             <td>destination airfield</td>
  41.         </tr>
  42.         ...
  43.        </tbody>
  44.     </table>
  45.  
  46.    <div class="price">
  47.     €999,99
  48.    </div>
  49. </div>
  50. </li>
  51.  
  52. // duplicate the above for a new flight..
  53. </ul>
  54.        
  55. <style>
  56.     #flights .images {
  57.        float: left;
  58.        width: 250px;
  59.     }
  60.  
  61.     .flight_info {
  62.         float: left;
  63.         width: 700px;
  64.     }
  65.  
  66.     .flight_info .flight_number,
  67.     .flight_info  .price {
  68.         float: left;
  69.         width: 150px;
  70.     }
  71.  
  72.     .flight_info  .price {
  73.         float: right;
  74.     }
  75.  
  76.     .flight_info table {
  77.         float: left;
  78.         width: 400px;
  79.     }
  80. </style>