【问题标题】:can I remove or change background color subtitle/webvtt in html5我可以在 html5 中删除或更改背景颜色字幕/webvtt
【发布时间】:2021-10-13 20:07:10
【问题描述】:

我想删除或更改字幕的背景。我已经更改了背景颜色和背景,但它不起作用。背景可以改变吗?

::cue {
  color: red;
  background-color: blue; //or background: blue;
}

字幕颜色变为红色,但背景完全没有变化

【问题讨论】:

    标签: html5-video background-color subtitle webvtt video-subtitles


    【解决方案1】:

    我尝试了以下方法:

    ::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);
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2010-11-12
      • 2021-02-07
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2018-10-22
      相关资源
      最近更新 更多