0
How to use logo pic in div button?
I want to use home logo pic in div class button.
3 ответов
+ 1
just write div tag and give a class inside div tag add a button inside button u can add image
+ 1
Your questions is not clear. However according to your statement. it would look like this.
<div class="button"> </div>
css
.button {
background-image: url(path);
}
Replace "path" with the image's URL within the site. For example, if the image "logo.jpg" is in your site's "images" folder, change the code to:
background-image: url(/images/logo.jpg);
0
Put an image inside a div? You can message me if you don't find a solution