Center carousel of bootstrap images

0

I'm doing a bootstrap carousel but when defining:

<div class="col-sm-12">

With the 12 if it appears centered on the screen, but if I want to make it smaller for example:

<div class="col-sm-8">

With the 8 comes more stuck on the right side of the screen. Do you know how I can center it?

I would really appreciate your help.

    
asked by Alex Almaran 26.04.2018 в 16:54
source

1 answer

4

Depending on the version of Bootstrap you use, you can try the following:

<!-- Bootstrap v3 -->
<div class="row">
    <div class="col-sm-8 col-sm-offset-2"></div>
</div>

<!-- Bootstrap v4 -->
<div class="row justify-content-center">
    <div class="col-sm-8"></div>
</div>
    
answered by 26.04.2018 / 17:21
source