Quiz Blog

Question 1

Answer 1

Score: 0/50

Correct answers: 0

Incorrect answers: 0

``` CSS (in style.css file): ``` .question { border-bottom: 1px solid #ccc; padding-bottom: 10px; } .answers { border-collapse: collapse; width: 100%; } .answers tr { border-bottom: 1px solid #ccc; } .answers tr:last-child { border-bottom: none; } .answers td { padding: 10px; border-right: 1px solid #ccc; } .answers td:last-child { border-right: none; } .correct { background-color: green; } .incorrect { background-color: red; }