change the height of select option
NO. It's not possible to change height of a select dropdown because that property is browser specific.
change the height of select option
NO. It's not possible to change height of a select dropdown because that property is browser specific.
how to set option size to select in html css
$('select').change(function(){
var text = $(this).find('option:selected').text()
var $aux = $('<select/>').append($('<option/>').text(text))
$(this).after($aux)
$(this).width($aux.width())
$aux.remove()
}).change()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us