Gradient color in html table
问题 I need to insert my gradient from column "First" to "Three".The first two columns should not be painted over, the number of columns may vary now: should be <table> <thead> <tr> <th>---</th> <th>---</th> <th>First</th> <th>Second</th> <th>Three</th> </tr> </thead> <tbody> <tr> <td>not gradient</td> <td>not gradient</td> <td>1</td> <td>2</td> <td>3</td> </tr> </tbody> </table> * {margin:0;padding:0;border:0;border-collapse:collapse;} table { width:100%; } th, td { border: 2px solid black; text