Cita:
Iniciado por nerwell
en el inicio del .css tengo
Código CSS:
Ver original* { font-family:Tahoma;
font-size: 12px;}
pero no creo que influya.
Hola nerwell, no es recomendable que apliques esas propiedades al selector universal
*, pero como dices no afecta en nada si es que formateas bien, en este caso tu tabla.
mira te dejo un ejemplo donde podras apreciar el formateo a distintas partes de la tabla...
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> * { font-family:verdana;
font-size: 12px;}
#mytable{width:500px;}
#mytable th,#mytable td{
font:13px Arial, Helvetica, sans-serif;
color:#333333;
border:none;
padding:15px 15px;
border-bottom:1px solid #e1e1e1;
text-align: left; width:40%;
}
#mytable th{
line-height: 15px;
border-right:1px solid #e1e1e1;
width:50%;
padding-left:15;
font-weight:bold;
font:16px 'Monotype Corsiva';
}
<table id="mytable" cellspacing="0">
Saludos DTB