Ver Mensaje Individual
  #3 (permalink)  
Antiguo 19/10/2010, 13:36
cabbav
 
Fecha de Ingreso: octubre-2010
Mensajes: 3
Antigüedad: 13 años, 6 meses
Puntos: 0
Respuesta: Problema con cargar 2 css

hola cristian cena gracias por la respuesta, pero no funciono yo ya estoy llamando de esa forma a los css

voi a poner mi codigo
css
miestilo.css
.headerazul {
font-family: Geneva, Arial, Helvetica, sans-serif;
font-size: small;
color: #FFFFFF;
background-color: #006699;
border: thin solid #003399;
font-weight: bold;
}
.tabla {
font-family: Geneva, Arial, Helvetica, sans-serif;
font-size: small;
background-color: #EFE6CE;
border: 2px solid #666666;
font-weight: bold;
}

y lo llamo a mi pagina de esta forma

<style type="text/css">
<!--
@import url("../css/miestilo.css");
.Estilo1 {font-size: large}
-->
</style>

y lo agrego en mi formulario así

<table width="690" height="167" border="0" class="tabla">

mas a bajo tengo un include

include('consultapie.php')

que llama a tabla.css

<link rel="stylesheet" type="text/css" href="../css/tabla.css" />

y lo agrega a la tabla asi

<div id= table>

codigo de tabla.css

#table { background:#FFFFFF;
border: 0px solid gray;
border-collapse:collapse;
color:#fff;
font:normal 12px verdana, arial, helvetica, sans-serif;
}
caption { border:1px solid #000000;
color:#000000;
font-weight:bold;
letter-spacing:20px;
padding:6px 4px 8px 0px;
text-align:center;
text-transform:uppercase;
}
td, th { color:#363636;
padding:.4em;
}
tr { border:1px dotted gray;
}
thead th, tfoot th { background:#045FB4;
color:#FFFFFF;
padding:3px 10px 3px 10px;
text-align:left;
text-transform:uppercase;
}
tbody td a { color:#363636;
text-decoration:none;
}
tbody td a:visited { color:gray;
text-decoration:line-through;
}
tbody td a:hover { text-decoration:underline;
}
tbody th a { color:#363636;
font-weight:normal;
text-decoration:none;
}
tbody th a:hover { color:#363636;
}
tbody td+td+td+td a { background-image:url('bullet_blue.png');
background-position:left center;
background-repeat:no-repeat;
color:#03476F;
padding-left:15px;
}
tbody td+td+td+td a:visited { background-image:url('bullet_white.png');
background-position:left center;
background-repeat:no-repeat;
}
tbody th, tbody td { text-align:left;
vertical-align:top;
}
tfoot td { background:#5C443A;
color:#FFFFFF;
padding-top:3px;
}
.odd { background:#fff;
}
tbody tr:hover { background:#99BCBF;
border:1px solid #03476F;
color:#000000;
}

y es el tabla.css del include que afecta al formulario de mi pagina cualquier cosa espero una solucion ;)