| <!-- | |
| @DEFAULT-ACTION-ON:Pets | |
| --> | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| select, | |
| select::picker(select) { | |
| appearance: base-select; | |
| } | |
| option::checkmark { | |
| content: '>' / 'a right pointing chevron'; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <select aria-label="Pets"> | |
| <option>Dog</option> | |
| <option>Cat</option> | |
| <option>Donkey</option> | |
| </select> | |
| </body> | |
| </html> |