Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select { border:none; }
...or a Select box form element? (<select>)
If it is the latter, as I suspect then I don't think you can. Their appearance is controlled by the browser/OS and as such you have no direct control over their appearance.
BillRay said:Don't you hate having to repeat yourself because posts don't get read?
<style type="text/css">
a {text-decoration:none; color:black; background:white}
a:hover {background:blue}
</style>
<a href="#"> 1 </a><br />
<a href="#"> 2 </a><br />
<a href="#"> 3 </a><br />
<ul>
<li><a href="#"> 1 </a></li>
<li><a href="#"> 2 </a></li>
<li><a href="#"> 3 </a></li>
</ul>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml">[/URL]
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
ul {
list-style:none;
margin:0;
padding:0;
}
ul li ul {
display:none;
}
ul li:hover ul {
display:block;
}
a {
text-decoration:none;
}
a:hover {
color:#f00;
}
</style>
</head>
<body>
<ul>
<li>Choose an option
<ul>
<li><a href="#"> 1 </a></li>
<li><a href="#"> 2 </a></li>
<li><a href="#"> 3 </a></li>
</ul>
</li>
</ul>
</body>
</html>