Answers for "how to keep image size fixed card bootstrap"

C#
0

how to change card width for mobile view in bootstrap

<style>
      @media  only screen and (min-width : 768px) {
          .card {
            display: block !important;
            width: 25rem !important;
            flex:none !important;
          }
      }
  </style>
Posted by: Guest on December-15-2021
7

bootstrap 5 card image same height

.card-img-top {
    width: 100%;
    height: 15vw;
    object-fit: cover;
}
Posted by: Guest on March-09-2020

Code answers related to "how to keep image size fixed card bootstrap"

C# Answers by Framework

Browse Popular Code Answers by Language