79838475

Date: 2025-12-05 01:22:44
Score: 1
Natty:
Report link

The image disappears on mobile because the left flex column(flex : 15%) is allowed to shrink to 0 width in small screens. flexbox on mobile compresses it completely, so the image (100% of 0) becomes invisible.

To prevent shrinking, we can set minimum width :

.fasciasx { flex-shrink: 0 ;}

or

.fasciasx { min-width: 120px; }

this one keeps the image visible on mobile screen.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Siripireddy Giri