Background-image not showing
Just started learning html and Css, so I experiment along as i learn. Today i stumbled upon background -image and background-color, so I decided to try it out. Below is the code I tried out. style> div { background-image: url ("img/fkk.png"); } </style> Now that code above does not work, so i decided to add background-color to it to see if the problem was from somewhere else. Code below. style> div { background-image: url "img/fkk.png"; background-color: gray; } </style> Now, here, the color worked but the image still does not work, even if i remove the background-color property. The image folder is correct cause I tried it out on the page with the <img> tag and it appeared. So what could be the problem? Thanks for your time.