content-103-ref.html (320B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Reference</title> 4 <style> 5 td { 6 color: green; 7 border: 2px solid black; 8 } 9 </style> 10 <body> 11 <p>Test passes if the word "nowrap" appears in the box below.</p> 12 <table> 13 <tr> 14 <td>nowrap</td> 15 </tr> 16 </table> 17 </body>