Selection Box Settings
Selection Box Setting
Label Setting
You can easily customize the label of input, you can change it in this line of code:
```handlebars
<label for="work-experience" class="text-[#1A1236] dark:text-gray-100 ">Work experiences</label>
```
Make sure that the "FOR" value of the label tag and the "ID" value of the select tag have the same value

Add or delete the option
You can add and the custom the value of your selection by customize the option tag.
// Some code
```handlebars
<option value="YOUR_VALUE">SELECTION OPTION TEXT</option>
```

Last updated