Alterando o fundo de um valor de célula de coluna baseado no Valor (HTML Reportado criado por awk) [duplicado]

0

Eu criei uma tabela HTML (dados do banco de dados) usando o awk. Eu estou preso em criar o fundo de uma coluna, dependendo do valor da célula. Não tem muita ideia sobre css. Eu sou capaz de mudar o ont bbased na condição, mas não a cor de fundo. aqui está o meu código. Se o status for menor que 100, o plano de fundo deve ser vermelho ... siga o mesmo bg que o restante da tabela.

BEGIN {
  print "<html><body></br></br>The report provides overall Percentage Secured in the given subjects.</br></br></br>"
  print "<table border=1 bgcolor= \'LemonChiffon\" cellspacing=1 cellpadding=1>"
}

NR==1 {
  # Header row
  print "<tr>"

  for ( i = 1; i <= NF; i++ ) {
    print "<td><b>"$i"</b></td>"
  }
  print "</tr>"
}

NR>1 {
  # Data rows
  print "<tr>"
  if( $i < 100 ) {
    color="RED"  \ Background should be Red if the status is less tha 100\
}
  if( $i == 100 ) {
    color="BLACK" \Same background as rest o the table\
  }
  print "<td><b><FONT COLOR=\""color"\" FACE=\"verdana\" SIZE=2>"$1"</b></FONT></td><td>"$2"</td><td>"$3"</td><td>"$4"</td><td>"$5"</td>"
  print "</tr>"
}
END {
  print "</table></body></html>"
} 
    
por D.Joe 03.10.2018 / 21:21

1 resposta

0

Esta é uma referência antiga, mas boa, para as propriedades básicas do CSS: link

Eu faria

BEGIN {
  print "<html><head>"
  print "<title> Set the page title here </title>"
  print "<style type=\"text/css\">"
  print ".error {
  print "   color: red,"
  print "   font-size: larger,"
  print "   // other properties... take care, no trailing comma allowed"
  print "}"
  print "</style></head>"
  print "<body>"
  # use P tags, not BR line breaks -- easier to apply styling.
  print "<p>The report provides overall Percentage Secured in the given subjects.</p>"
  print "<table border=1 bgcolor=\"LemonChiffon\" cellspacing=1 cellpadding=1>"
}

NR == 1 {...} # I would use TH tags for the headers

NR > 1 {
  # Data rows
  print "<tr>"
  for ( i = 1; i <= NF; i++ ) {
    class = $i < 100 ? "class=\"error\"" : ""
    printf "<td %s>%s</td>\n", class, $i
  }
  print "</tr>"
}

Colocar estilos em um lugar ajudará se

    
por 03.10.2018 / 23:15

Tags