I have a problem with the "background-image" property since my css file
<!DOCTYPE html>
<html lang="ES">
<head>
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0,
shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="css/Estilos.css">
</head>
<body>
<div class="Fondo">
</div>
</body>
and this is my css
.Fondo{
background-image: url(img/Fondo_Error.png);
border: 2px solid black;
height: 150px;
}
since the css the background-image does not work for me but if I put it inside the tag, it just works for me.
<div class="Fondo" style="background-image: url(img/Fondo_Error.png);">
</div>
It should be noted that the border and height if I work from the css.