| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <style type="text/css"> | 5 <style type="text/css"> |
| 6 body { overflow: hidden; } |
| 6 .box { | 7 .box { |
| 7 display: inline-block; | 8 display: inline-block; |
| 8 box-sizing: border-box; | 9 box-sizing: border-box; |
| 9 -moz-box-sizing: border-box; | 10 -moz-box-sizing: border-box; |
| 10 width: 150px; | 11 width: 150px; |
| 11 height: 150px; | 12 height: 150px; |
| 12 margin: 20px; | 13 margin: 20px; |
| 13 border-width: 50px; | 14 border-width: 50px; |
| 14 border-color: rgba(0, 0, 0, 0.5); | 15 border-color: rgba(0, 0, 0, 0.5); |
| 15 border-style: solid; | 16 border-style: solid; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 27 | 28 |
| 28 <div class="box" style="border-right-color: transparent; border-right-width: 5
0px;"></div> | 29 <div class="box" style="border-right-color: transparent; border-right-width: 5
0px;"></div> |
| 29 <div class="box" style="border-right-color: transparent; border-right-width: 0
; | 30 <div class="box" style="border-right-color: transparent; border-right-width: 0
; |
| 30 border-bottom-color: transparent;"></div> | 31 border-bottom-color: transparent;"></div> |
| 31 <div class="box" style="border-right-color: transparent; border-right-width: 0
; | 32 <div class="box" style="border-right-color: transparent; border-right-width: 0
; |
| 32 border-bottom-color: transparent;border-bottom-width:
0"></div> | 33 border-bottom-color: transparent;border-bottom-width:
0"></div> |
| 33 <div class="box" style="border-right-color: transparent; border-right-width: 0
; | 34 <div class="box" style="border-right-color: transparent; border-right-width: 0
; |
| 34 border-bottom-style: groove;"></div> | 35 border-bottom-style: groove;"></div> |
| 35 </body> | 36 </body> |
| 36 </html> | 37 </html> |
| OLD | NEW |