В настоящее время я работаю над сайтом в Bootstrap 4 на основе дизайна.Есть один элемент, который я не могу придумать, как подойти к этому в CSS.
Я легко могу сделать сетку и контент.Проблема заключается в наложении эффекта затухания на каждую из границ
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet"/> <div class="col-12 mb-5 px-2 px-md-5"> <div class="row justify-content-center text-center"> <div class="col-12 col-md-3 px-4"> <img src="https://image.prntscr.com/image/NMnvaTiNRxi61-XRT5ss_g.png" class="img-fluid p-3" alt="Icon of the AMT tick in a circle"> <h5 class="red pr-0"> It has 3+ months MOT </h5> </div> <div class="col-12 col-md-3 px-4"> <img src="https://image.prntscr.com/image/NMnvaTiNRxi61-XRT5ss_g.png" class="img-fluid p-3 d-none d-md-inline-block" alt="Icon of the AMT tick in a circle"> <h5 class="red pr-0"> It is not an import </h5> </div> <div class="col-12 col-md-3 px-4"> <img src="https://image.prntscr.com/image/NMnvaTiNRxi61-XRT5ss_g.png" class="img-fluid p-3 d-none d-md-inline-block" alt="Icon of the AMT tick in a circle"> <h5 class="red pr-0"> It is not an insurance write off </h5> </div> <div class="col-12 col-md-3 px-4"> <img src="https://image.prntscr.com/image/NMnvaTiNRxi61-XRT5ss_g.png" class="img-fluid p-3 d-none d-md-inline-block" alt="Icon of the AMT tick in a circle"> <h5 class="red pr-0"> It has never been used for private/commercial hire, rental, driving tuition </h5> </div> <div class="col-12 col-md-3 px-4"> <img src="https://image.prntscr.com/image/NMnvaTiNRxi61-XRT5ss_g.png" class="img-fluid p-3 d-none d-md-inline-block" alt="Icon of the AMT tick in a circle"> <h5 class="red pr-0"> It has no serious mechanical issues </h5> </div> <div class="col-12 col-md-3 px-4"> <img src="https://image.prntscr.com/image/NMnvaTiNRxi61-XRT5ss_g.png" class="img-fluid p-3 d-none d-md-inline-block" alt="Icon of the AMT tick in a circle"> <h5 class="red pr-0"> You have the V5 in your name </h5> </div> <div class="col-12 col-md-3 px-4"> <img src="https://image.prntscr.com/image/NMnvaTiNRxi61-XRT5ss_g.png" class="img-fluid p-3 d-none d-md-inline-block" alt="Icon of the AMT tick in a circle"> <h5 class="red pr-0"> It has full service history </h5> </div> <div class="col-12 col-md-3 px-4"> <img src="https://image.prntscr.com/image/NMnvaTiNRxi61-XRT5ss_g.png" class="img-fluid p-3 d-none d-md-inline-block" alt="Icon of the AMT tick in a circle"> <h5 class="red pr-0">It has no more than 50,000 miles</h5> </div> </div> </div>