覆盖不同类td中的字体大小

时间:2015-10-28 20:11:36

标签: html css

我有这个:

td {
    text-align: left;
    font-size: 18px;

}

td.botonver {
    border: 1px solid white;
    background-color: #669900;
    width: 150px;
    font-size: 12px;
}


    <?php>

    // code

    echo "<table>
                <tr><td>El nº total de registros es: ".$mi_agenda->numero_registros."</td>
                <td class=\"botonver\">".boton("Ver listado completo","index.php?operacion=listado")."</td></tr>
              </table>";
    ?>

具有该字体大小的类“botonver”不适用于单元格td,它是18px。为什么呢?

谢谢!

1 个答案:

答案 0 :(得分:0)

我没有测试,但我相信这应该有效!

    td {
        text-align: left;
        font-size: 18px;

    }

    td.botonver {
        border: 1px solid white;
        background-color: #669900;
        width: 150px;
        font-size: 12px !important;
    }


echo '<table><tr><td>El nº total de registros es: '.$mi_agenda.'</td>
    <td class=botonver>'.boton("Ver listado completo","index.php?operacion=listado").'</td></tr>
              </table>';