91
Views
1
Comments
Delete Icon Add on Image
Question
Application Type
Reactive

Hi all,

I have a Image of List and i want to add one  Icon on Image Like this:

Is it Possible in outsystems??

2022-08-03 04-32-50
Ravi Punjwani

It would be better if you suggest which widget / component you are using. But I'll try to respond your question regardless.

Yes, it is possible with some custom css.

Add a parent container to image:

.parent {
   position: relative;
}

.child-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: auto;
}

After you apply the css, make sure to do a little bit of fine tuning and make it look great visually!!!

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.