Here\'s my HTML:
You can use inline styles to add custome styling to tags.
For eg :
This will apply the styles to this particular
element only.
Then you can use a bit of javascript magic to apply the inline styles to all of the elements within a
tag like so :
var select = $(document).getElementById('#select-element-id')
var option = select.children('#option-element-id')
option.css('font-weight', 'bold')
option.css('font-size', '24px')
You can also use to add a line-break between the options.