1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<!DOCTYPE html> <html> <title>CSS Reftest Reference</title> <style> span { color: green; } </style> <body> <p>Test passes if the letter "F" below is green.</p> <table> <tr> <td><span>F</span>iller Text</td> </tr> </table> </body> </html>