| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <style> | 2 <style> |
| 3 .flex-container { | 3 .flex-container { |
| 4 background: #333; | 4 background: #333; |
| 5 border: 0px; | 5 border: 0px; |
| 6 display: flex; | 6 display: flex; |
| 7 margin: 0px; | 7 margin: 0px; |
| 8 padding: 0px; | 8 padding: 0px; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 <div class="flex-item">2</div> | 97 <div class="flex-item">2</div> |
| 98 <div class="flex-item">3</div> | 98 <div class="flex-item">3</div> |
| 99 </summary> | 99 </summary> |
| 100 | 100 |
| 101 <h1>justify-content: space-between</h1> | 101 <h1>justify-content: space-between</h1> |
| 102 <summary class="flex-container justify-content-space-between"> | 102 <summary class="flex-container justify-content-space-between"> |
| 103 <div class="flex-item">1</div> | 103 <div class="flex-item">1</div> |
| 104 <div class="flex-item">2</div> | 104 <div class="flex-item">2</div> |
| 105 <div class="flex-item">3</div> | 105 <div class="flex-item">3</div> |
| 106 </summary> | 106 </summary> |
| OLD | NEW |