【发布时间】:2021-10-13 20:07:10
【问题描述】:
我想删除或更改字幕的背景。我已经更改了背景颜色和背景,但它不起作用。背景可以改变吗?
::cue {
color: red;
background-color: blue; //or background: blue;
}
字幕颜色变为红色,但背景完全没有变化
【问题讨论】:
标签: html5-video background-color subtitle webvtt video-subtitles
我想删除或更改字幕的背景。我已经更改了背景颜色和背景,但它不起作用。背景可以改变吗?
::cue {
color: red;
background-color: blue; //or background: blue;
}
字幕颜色变为红色,但背景完全没有变化
【问题讨论】:
标签: html5-video background-color subtitle webvtt video-subtitles
我尝试了以下方法:
::cue {
color: red;
// take an absurd big outline, because background is only behind the text
outline: 500px solid blue;
// dont know why background-color is not working but background-image does the job
background-image: linear-gradient(blue, blue);
}
【讨论】: