I have the following select2 dropdownlist. How do I increase the font size of certain options. The below style="font-size:40px;"
is not working.
$(document).ready(function() {
$('.sele').select2();
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.12/js/select2.full.min.js"></script>
<select class="sele" name="goalcat" id="goalcat" onchange="this.form.submit();">
<option disabled>Select a type</option>
<option value="501" style="font-size:40px;" disabled>Main option</option>
<option value="1">Child option</option>
</select>