How to center image in carousel

You’ve got two options

  1. If you want the image to take up entire carousel then
img 
{
   width: 100%;
   height: auto;
}
  1. If you dont want the image to stretch 100 %, then set your desired width(or dont, just specify margin) and margin auto:
img
{
   width: 50%;
   margin: auto;
}

Leave a Comment