Skip to main content
code formatting
Source Link
Mateusz Kocz
  • 4.6k
  • 1
  • 27
  • 27

You can use the box-shadowbox-shadow property to "fake"fake a border of tra tr element. Adjust Y position of box-shadowbox-shadow (below represented as 2px) to adjust thickness.

tr {  -webkit-box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.99);  -moz-box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.99);  box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.99); } 

You can use the box-shadow property to "fake" a border of tr element. Adjust Y position of box-shadow (below represented as 2px) to adjust thickness.

tr { -webkit-box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.99); -moz-box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.99); box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.99); } 

You can use the box-shadow property to fake a border of a tr element. Adjust Y position of box-shadow (below represented as 2px) to adjust thickness.

tr {  -webkit-box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.99);  -moz-box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.99);  box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.99); } 
Source Link
Ian Bruce
  • 201
  • 2
  • 3

You can use the box-shadow property to "fake" a border of tr element. Adjust Y position of box-shadow (below represented as 2px) to adjust thickness.

tr { -webkit-box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.99); -moz-box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.99); box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.99); }