[go: up one dir, main page]

Skip to content

Commit

Permalink
Merge pull request #38 from cbracco/racztiborzoltan-patch-1
Browse files Browse the repository at this point in the history
Add multiple <select> example
  • Loading branch information
cbracco authored Apr 3, 2021
2 parents e24e4b2 + 4b6224d commit 35cd96c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.9.3 (April 3, 2021)

- Add multiple <select> (thanks @racztiborzoltan!).

# 0.9.2 (April 3, 2021)

- Add nested lists (thanks @charul97!).
Expand Down
10 changes: 10 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,16 @@ <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaptio
</optgroup>
</select>
</p>
<p>
<label for="select_multiple">Select (multiple)</label>
<select id="select_multiple" multiple="multiple">
<optgroup label="Option Group">
<option>Option One</option>
<option>Option Two</option>
<option>Option Three</option>
</optgroup>
</select>
</p>
</fieldset>
<p><a href="#top">[Top]</a></p>
<fieldset id="forms__checkbox">
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "html5-test-page",
"version": "0.9.2",
"version": "0.9.3",
"description": "A page filled with common HTML elements to be used for testing purposes.",
"main": "index.html",
"scripts": {
Expand Down

0 comments on commit 35cd96c

Please sign in to comment.