Search code examples
cssreactjsreact-bootstrapblur

Make linear blur react on card


I'm trying to do this:

Image

But I can't find how I can make an linear blur for card in css or in React..


Solution

  • On the element that you want, add an overlay.

    .element:after {
      content: "";
      display: block;
      width: 100%;
      height: 200px;
      position: absolute;
      bottom: 0;
      pointer-events: none;
      background-image: linear-gradient(to bottom, rgba(255,255,255,0) 0%, white 100%);
    }