我正在尝试更改select option边界但无法做到这一点,我已经尝试了很多次但没有找到合适的解决方案。我附上了屏幕截图。

<head>
  <style>
    select option {
      background:transparent;
      border:0;
    }
  </style>
</head>
<body>
  <select>
    <option>hello</option>
    <option>hello</option>
    <option>hello</option>
    <option>hello</option>
    <option>hello</option>
  </select>
</body>