D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
skorasaurus
Full window
Github gist
NVDA test case; thanks to Scott O'hara, weston thayer, and andrew nevins for assisting in debugging
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Max's pizza</title> </head> <body> <form> <fieldset> <legend> What is your favorite pizza topping? </legend> <div > <input type="radio" name="test-input" id="test-input-1" checked=""> <label for="test-input-1"> escargot </label> </div> <div > <input type="radio" name="test-input" id="test-input-2"> <label for="test-input-2"> Pepperoni </label> </div> <div > <input type="radio" name="test-input" id="test-input-3"> <label for="test-input-3"> green peppers </label> </div> </fieldset> </form> </body> </html>