WordPress CSS 图像背景图像



我正在尝试在 26 岁的 wordpress 儿童主题的视频后面获取图像。我尝试使用以下文件路径。

background: url('../images/image.jpg’);

我有图像在一个

.wp-block-video.aligncenter {
text-align: center;
border-style: solid;

但图像不会出现在其后面 我修改了代码,但无济于事

background-image: {
url('..images/('alliswell.ie_video_2018.jpg');
width:100px;    
height:100px; 
};

该网站 alliswell.ie

标签"视频"具有"海报"属性: 下载视频时要显示的图像的 URL。如果未指定此属性,则在第一帧可用之前不会显示任何内容,然后第一帧将显示为海报帧。

请尝试以下代码:

.wp-block-video.aligncenter
background-image: url(http://alliswell.ie/wp-content/uploads/2018/09/alliswell_ie_caring-forourwater_2018.jpg-e1536244962710.png);
background-repeat: no-repeat;
background-size: cover;
}

background-image中使用完整的网址。 背景图片:网址(../images/images.jpg( 找不到图像路径。

这是答案还是对我有用 ..wp-block-video.aligncenter{ background-image: url(alliswell.ie/wp-content/uploads/2018/09/...(; background-repeat: no-repeat; background-size: cover; } –

谢谢迪内什卡什拉的回答和其他所有提出建议的人。

相关内容

  • 没有找到相关文章

最新更新