样式html5音频播放器

时间:2020-08-15 13:59:06

标签: html css audio

我想要的更改是border-radius:0px

我尝试:

<audio id="player" controls>
    <!--<source src="horse.ogg" type="audio/ogg">-->
    Your browser does not support the audio element.
</audio>
#player {
    border-radius:0px;
}

无效。

任何建议都会有用。

1 个答案:

答案 0 :(得分:1)

border-radius: 0px在Firefox中完美运行。
但是在铬合金中似乎无效。在下面使用以稍微减小半径。

#player{
background-color: #f1f3f4;
}

我的意思是将背景更改为玩家背景。