summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-sizing/aspect-ratio/fieldset-element-001-ref.html
blob: cc964da974077b062212a7cd4e388f1daa017ec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<title>CSS aspect-ratio Reference: fieldset</title>
<style>
  fieldset {
    width: 200px;
    background: yellow;
  }

  legend {
    background: black;
    color: white;
    padding: 3px 6px;
  }
</style>

<form>
  <fieldset>
    <legend>Choose one item:</legend>

    <input type="radio" id="item1" name="item">
    <label for="item1">item 1</label><br/>

    <input type="radio" id="item2" name="item">
    <label for="item2">item 2</label><br/>

    <input type="radio" id="item3" name="item">
    <label for="item3">item 3</label>
  </fieldset>
</form>