1

I have a card in which under card body, I am displaying a table. One of the td contains a progress bar. However, this specific column containing the progress bar is not appearing of desired width (col-xs-8). I tried to set this on table headers and on specific data columns in tbody but this was of no avail. Any suggestions?

Working code snippet : https://www.codeply.com/go/2CGGezuq6j

shmit
  • 2,306
  • 2
  • 16
  • 20

1 Answers1

2

As of bootstrap 4, you can't use xs, replace col-xs-8 with just col-8

https://getbootstrap.com/docs/4.0/layout/grid/

Edit:

And remember to enclose your columns with the row class

Breezer
  • 10,410
  • 6
  • 29
  • 50