How to draw the horizontal row of the table in the bootstrap

1

While reading various articles on the net about table

link
link

I could not get a doubt.
How to draw the horizontal line of the table in the bootstrap
Below I leave an image as an example of a simple table where
there are 3 lines in light gray that separate the records. How do you remove them? I tried to use the border, but the same only works for borada :) HomeIwouldliketohavetheresultasintheimagebelow(Ieditedthefirstimage)

    
asked by anonymous 29.06.2017 / 19:27

1 answer

3

An alternative to remove the borders would look like this:

table td{
  border:none !important;
}

* Note that you must use !important to ignore the style assigned by the bootstrap itself, careful that this css snippet will remove any and all edges from all td's , if you want to remove only from a specific table, reference it through a class or an id.

Here's a fiddle with an example: JsFiddle

    
29.06.2017 / 19:43