One curious issue I encountered while working with Bootstrap 4's accordion on this page is that the text of the last item in the accordion is mysteriously centered. Despite not using text-center
or having any CSS properties like text-align: center
specified, the text remains centered only on mobile devices and not desktop screens.
https://i.sstatic.net/J1oBi.png
Here's a snippet of my code:
.accordion-faq .card {
border-radius: 0;
border: 1px solid #F1F5F7;
border-right: none;
border-left: none;
text-align: left;
}
/* Rest of the CSS code... */
}
<!-- Bootstrap CDN -->
<!-- Links to external CSS files... -->
<!-- Accordion structure within HTML -->