Posts by Henrique Lemes Baron • 19 points
2 posts
-
0
votes3
answers179
viewsA: Using a Class within another CSS Class
I was able to solve it this way function zebrar() { var table = document.getElementById("tabela_parametros_gerais"); for (let i = 0, row; row = table.rows[i]; i++) { let cor = i % 2 === 0 ?…
-
0
votes3
answers179
viewsQ: Using a Class within another CSS Class
I have a table, and I want the lines to intersperse colors the way below works perfectly <style type="text/css"> .tabela_parametros_gerais tr{height: 20px !important;}…