mirror of
https://github.com/cbracco/html5-test-page.git
synced 2025-08-03 20:58:00 +02:00
Merge pull request #38 from cbracco/racztiborzoltan-patch-1
Add multiple <select> example
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
# 0.9.3 (April 3, 2021)
|
||||||
|
|
||||||
|
- Add multiple <select> (thanks @racztiborzoltan!).
|
||||||
|
|
||||||
# 0.9.2 (April 3, 2021)
|
# 0.9.2 (April 3, 2021)
|
||||||
|
|
||||||
- Add nested lists (thanks @charul97!).
|
- Add nested lists (thanks @charul97!).
|
||||||
|
10
index.html
10
index.html
@@ -435,6 +435,16 @@
|
|||||||
</optgroup>
|
</optgroup>
|
||||||
</select>
|
</select>
|
||||||
</p>
|
</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>
|
</fieldset>
|
||||||
<p><a href="#top">[Top]</a></p>
|
<p><a href="#top">[Top]</a></p>
|
||||||
<fieldset id="forms__checkbox">
|
<fieldset id="forms__checkbox">
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "html5-test-page",
|
"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.",
|
"description": "A page filled with common HTML elements to be used for testing purposes.",
|
||||||
"main": "index.html",
|
"main": "index.html",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
Reference in New Issue
Block a user