size-ref.html (309B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 #foo { 6 height: 50px; 7 box-sizing: border-box; 8 } 9 #bar { 10 border-bottom-width: 0px; 11 box-sizing: border-box; 12 } 13 </style> 14 </head> 15 <body> 16 <hr id="foo"> 17 <hr id="bar"> 18 </body> 19 </html>