I was practicing bootstrap 4 carousal example given in http://v4-alpha.getbootstrap.com/examples/ . carousal caption is not visible when testing it for mobile or small screen. A
Remove the classes d-none d-md-block
from all of the carousel-caption
classes, the class d-none
gives the caption a display of none and the class d-md-block
gives it a display of block for md and above screens.
Note: you may need to adjust the text size on smaller screens to make everything fit if you have a lot of text in your captions.
Actually, just removing the class "d-none" will do it for you.
Here's what you ought to do:
d-none.
d-md-block.
associated with the carousel-caption
class of Bootstrap carousel.