P粉3126316452023-08-16 11:52:13
Have you tried setting overflow
to hidden
? Does it display like below? By default overflow
is visible
, so if the content of .AZ-rounded-image
is larger, it will overflow, making border-radius
Invisible.
.AZ-rounded-image { border-radius: 15px; overflow: hidden; }