Как сделать фоновое изображение видимым в моем css - PullRequest
0 голосов
/ 10 апреля 2020

У меня есть три файла в моем public_ html root:

public_html:
  index.htm 
  deer.jpg 
  style.css

В css .style у меня есть

body{
    background-image:url('deer.jpg');
}

В index.htm, у меня есть

<head><meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
    <title>AAA</title>
    <link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>

<h1>Filling the Gap betwwen ASIC Design Education and Industry</h1>
<h2>Interview Questions/Industry Case Study</h2>

<ul>
    <li><a href="asic/index.htm">Asic Design</a></li>  
    <li><a href="rental/rental.htm">Rental Management</a></li>  
</ul>
<p></p>
</body>
</html>

Почему изображение не отображается на моей веб-странице?

1 Ответ

0 голосов
/ 10 апреля 2020

Попробуйте использовать background: url('deer.jpg') no-repeat; вместо background-image

...