Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/04/2015, 01:52
jamm1993x
 
Fecha de Ingreso: diciembre-2014
Mensajes: 9
Antigüedad: 9 años, 10 meses
Puntos: 0
Problema con CSS externo

Hola, tengo un problemilla con un CSS, si lo pongo en style en HTML me lo carga bien pero luego al pasarlo a un css externo se me disloca...

El html en concreto es este:

Código:
<html>
<head>
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta HTTP-EQUIV="Expires" CONTENT="-1">
<!--#include file="/var/www/html/files/cabeceramenu.html" -->
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>

<body>
<table style="border: 0; 
	width: 100%; 
	height: 100%; 
	border-spacing: 0;">
	<tr>
		<td style="padding:0; 
	width:160px; 
	text-align:center; 
	vertical-align:top; 
	background-color: #f1f1f1; 
	border-right: #999999 2px solid;
	display: inline-block;">
		  <!--#include file="/var/www/html/files/cn/MenuActividades.html" -->
		</td>
		<td style="padding:0; 
	height: 100%;
	display: inline-block;">
		<% if(Modules.Actividades.A1.remoteIframe.DisplayText == '')
		  { %>
		  <iframe name="ContenidoActividades" src="<%= Request.ScriptName %>/<%= Modules.Actividades.A1.iframe.DisplayText %>" scrolling="auto" frameborder="0" width="100%" height="100%">
		  </iframe>
		  <% }
		else
		  { %>
		  <% if(Modules.Actividades.A1.remoteCall.DisplayText != 'true')
			{ %>
			<iframe name="ContenidoActividades" src="<%= Request.ScriptName %>/<%= Modules.Actividades.A1.remoteIframe.DisplayText %>" scrolling="auto" frameborder="0" width="100%" height="100%">
			</iframe>
			<% }
		  else
			{ %>
			<iframe name="ContenidoActividades" src="<%= Request.ScriptName %>/_blank" scrolling="auto" frameborder="0" width="100%" height="100%">
			</iframe>
			<% } %>
		  <% } %>
		</td>
	<tr>
<SCRIPT language=JavaScript>
if(<%= Modules.Actividades.A1.remoteCall.DisplayText %> == true)
  {MF.__act.value='<%= Modules.Actividades.A1.remoteIframe.DisplayText %>';
  MF.submit();}
</SCRIPT>
</table>
</body>
</html>
(sí, ya sé que es con tablas pero es que me están pidiendo tocar una página antigua)

Así me funciona perfecto. En cuanto le pongo class="xxxx" y exactamente los mismos atributos que en el código que acabo de pegar, los porcentajes en concreto no me los calcula bien. ¿Alguna solución?