我试图在方形空间视频中添加边框半径,但它不起作用。有人知道怎么做吗?
我想在视频上加一个圆形边框,并尝试了下面的代码:
#block-df45bbc957de1bd8c905.video-block .video-player{
padding-bottom:120%;
border-radius: 10px;
};
为了确保
border-radius
属性优先于任何不兼容的CSS规则,您可以尝试在其后添加!important
关键字,如下所示:
#block-df45bbc957de1bd8c905.video-block .video-player{
padding-bottom: 120%;
border-radius: 10px !important;
}