table-anonymous-border-spacing-ref.xht (470B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <style><![CDATA[ 5 #target { border-spacing: 20px; } 6 #target > * { display: table-cell; border: 1px solid black; } 7 ]]></style> 8 </head> 9 <body> 10 <p>There should be 20px border-spacing in the table below.</p> 11 <div id="target"> 12 <div>First cell</div> 13 <div>Second cell</div> 14 </div> 15 </body> 16 </html>