44 lines
		
	
	
		
			1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|     <title>Disable CSS Styling</title>
 | |
|     <style>
 | |
|         tbody {
 | |
|             background-color: lightgray;
 | |
|             color: black;
 | |
|         }
 | |
|     </style>
 | |
| </head>
 | |
| <body>
 | |
|     <table border="1">
 | |
|         <thead>
 | |
|             <tr>
 | |
|                 <th>Header 1</th>
 | |
|                 <th>Header 2</th>
 | |
|             </tr>
 | |
|         </thead>
 | |
|         <tbody>
 | |
|             <tr>
 | |
|                 <td>Data 1</td>
 | |
|                 <td>Data 2</td>
 | |
|             </tr>
 | |
|             <tr>
 | |
|                 <td>Data 3</td>
 | |
|                 <td>Data 4</td>
 | |
|             </tr>
 | |
|         </tbody>
 | |
|     </table>
 | |
|     <button onclick="disableTbodyStyles()">Disable Styling</button>
 | |
| 
 | |
|     <script>
 | |
|         function disableTbodyStyles() {
 | |
|             const tbody = document.querySelector('tbody');
 | |
|             tbody.style.backgroundColor = 'transparent';
 | |
|             tbody.style.color = 'inherit';
 | |
|         }
 | |
|     </script>
 | |
| </body>
 | |
| </html>
 |