background-image does not change in CSS file on server

0

I have a bakckground in a CSS file that works fine in the browser, but when I put it on the WAMP server changes in CSS do not happen. Can anyone help me?

In the Index

<link href="estilo.css" rel="stylesheet" type="text/css">

In CSS

body {
    border:0px solid red; /* borda de controle para programar */
    background-image: url('imagens/GrupoOficiaLCOR_TR25.png'), /*primeira imagem com transparência */
        url('imagens/ruido.png'),/*segunda imagem com transparencia */
        linear-gradient(45deg, #000,#FFF);
    background-attachment: fixed; /* fixa a imagem de fundo */
    font-family: Helvetica, Arial, Sans-serif; /* tudo dentro do body terá esta família de fontes */
    overflow-x: hidden;  /* remove barra de rolagem horizontal */
    height: 100%;
    background-size: 100%;
}
    
asked by anonymous 24.12.2017 / 03:31

0 answers