html - Background image doesn't show up -
i have tried following tutorials on w3schools, , i've dug developer tools on website i'm tasked cloning, , have gone previous project when had background image
.
i know user error, stuck.
my html looks this:
<section class="introduction"> <img src="background-image">
and css looks this:
.introduction { background-image: url('../images/karma-background.jpg'); }
you don't require image object
<img src="...">
css , background images work so.
<section class="introduction"></section> .introduction { background-image:url('../images/karma-background.jpg'); }
so problem haven't ended section tag have in example. may have add additional css sizing
Comments
Post a Comment