-1

how I can add style to an image added via inline css. there are several other images so I cant use the img tag in the CSS, I dont have access to the CSS of the page.

I want to fit the image into the div.

<div class="col-md-5 col-lg-3" style="
    background-image: url('https://...png);
>
...
</div>

1 Answers1

0

Was that what you wanted? i can change the background-image with css file.

.aclass {
  width:400px;
  height:300px;
  background-image:url('https://picsum.photos/400/320') !important;
}
<div class="col-md-5 col-lg-3 aclass" style="background-image: url('https://picsum.photos/400/300')">

</div>
doğukan
  • 23,073
  • 13
  • 57
  • 69