0

I have a div that I want to apply Bootstrap's text-center class , only on MD devices and below.

Any device above MD , I don't want to apply text-center class.

<p className='text-capitalize text-center'>
                    Copyright &copy; Tech Store {new Date().getFullYear()} 
                    All Rights Reserved!
</p>
JAN
  • 21,236
  • 66
  • 181
  • 318

1 Answers1

2

If you are looking for a bootstrap solution, Use text-lg-left class by setting 'text-center` as default.

  <p className='text-capitalize text-center text-lg-left'>
            Copyright &copy; Tech Store {new Date().getFullYear()} 
             All Rights Reserved!
  </p>

JSFiddle

Becky
  • 5,467
  • 9
  • 40
  • 73