Hi Team,
I would like to increase the space between letters inside select tag. I am not sure how to achieve this.
what i would like to get is like below
** letter >> l e t t e r **
** Below is my html and external CSS code . **
Please advise what im missing to achieve the result.
HTML code
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="mystyle8.css">
</HEAD>
<body>
<form>
<select>
<option value="apple"Saab</option>
<option value="orange">Mercedes</option>
<option value="mango">Audi</option>
</select>
</form>
</body>
</html>
** mystyle8.css **
select {
font-family: Cursive;
letter-spacing:3px;
}