Answers for "how to align card in center"

-2

center content/card css

.container {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
Posted by: Guest on April-30-2021
1

center card in bootstrap stack overflow

.card {
        margin: 0 auto; /* Added */
        float: none; /* Added */
        margin-bottom: 10px; /* Added */
}
Posted by: Guest on December-13-2020

Code answers related to "how to align card in center"

Browse Popular Code Answers by Language