设置DIV的背景图像

时间:2018-02-14 19:50:41

标签: html css

我有div,我需要在CSS文件中设置背景图片:

模板:

<div class="myBG">  Some Text Here </div>

CSS:

.myBG{
    background-image: url('ImageURL');
    color: #00FA9A;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    width: 100%;
    height: 100%;
}

要设置ImageURL我尝试了网络链接以及指向磁盘上图像的链接,但它不起作用,我没有得到任何背景到我的div。你能找出我的代码有什么问题吗?

1 个答案:

答案 0 :(得分:1)

您需要定位背景,例如:background: blue url("ImageURL.png") no-repeat center center;,使用background-size: cover;指定背景的大小或使用像素而不是cover指定背景的大小,确保计算出width }和height的{​​{1}}值不是div,并且在尝试从服务器获取图像时没有0错误。