Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
|
mstensho (USE GERRIT)
2014/11/27 09:33:28
HTML, HEAD and BODY tags can be omitted.
| |
| 3 <head> | |
| 4 <style type="text/css">.box { | |
|
mstensho (USE GERRIT)
2014/11/27 09:33:28
No need for the type attribute. And please move th
| |
| 5 display: inline-block; | |
| 6 box-sizing: border-box; | |
|
mstensho (USE GERRIT)
2014/11/27 09:33:29
Setting display and box-sizing seems unnecessary?
| |
| 7 -moz-box-sizing: border-box; | |
|
mstensho (USE GERRIT)
2014/11/27 09:33:28
No need for this.
| |
| 8 width: 153px; | |
| 9 height: 153px; | |
| 10 margin: 10px; | |
| 11 border-width: 20px; | |
| 12 border-color: black; | |
| 13 border-style: solid; | |
|
mstensho (USE GERRIT)
2014/11/27 09:33:28
This declaration has no effect.
| |
| 14 border-style: groove; | |
| 15 } | |
| 16 </style> | |
| 17 </head> | |
| 18 <body> | |
| 19 <!-- Test mixed border styles. --> | |
| 20 <div class="box"></div> | |
| 21 </body> | |
| 22 </html> | |
| OLD | NEW |