Ver Mensaje Individual
  #3 (permalink)  
Antiguo 05/10/2010, 18:57
de-troit
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Problema con Chrome: border-bottom

:O

Que raro.
Mejor dejo el código completo para ver donde está el error.

HTML:
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Felicidad ICF | Panel Administracion - Home</title>

<link rel="StyleSheet" type="text/css" href="../base/all/CSS/reset.css"/>
<link rel="StyleSheet" type="text/css" href="base/CSS/baseStyle.css"/>
<link rel="StyleSheet" type="text/css" href="../base/all/CSS/fonts.css"/>
<link rel="StyleSheet" type="text/css" href="home/homeStyle.css"/>
</head>

<body>
<div id="container"> <!-- #container -->
<div id="top"> <!-- #top -->
<div id="header"> <!-- #header -->
<a>Bienvenido(a) Administrador | </a><a href="#exit">Salir</a>
</div> <!-- /header -->

<div id="title"> <!-- #title -->
<span id="sist"><a>SISTEMA DE ADMINISTRACION</a></span>
<span id="icf"><a>FELICIDAD ICF CHILE</a></span>
</div> <!-- /#title -->

<div id="menu"> <!-- #menu -->
<div id="links"> <!-- #links -->
<span class="menuItem"><a href="noticias">NOTICIAS</a></span>
<span class="menuItem"><a href="programa">PROGRAMA</a></span>
<span class="menuItem"><a href="links">LINKS DE INTERES</a></span>
<span><a href="inscripciones">INSCRIPCIONES</a></span>
</div> <!-- /#links -->
</div> <!-- /#menu -->
</div> <!-- /#top -->

</div> <!-- /#container -->
</body>
</html>
CSS:
Código:
html {
	min-width: 900px;
}

body {
	padding: 0px;
	margin: 30px;
	background-color: white;
	font-family: 'MyriadAppleText';
	color: #4C4C4C;
}

a:link, a:visited {
	color: #4FBA00;
	text-decoration: none;
}

#header {
	padding-bottom: 4px;
	border-bottom: 1px solid #DEDEDE;
	text-align: right;
	font-size: 13px;
}

#title {
	margin: 40px 0 40px 0;
}

#sist { 
	color: #4FBA00;
	font-size: 18px;
	display: block;
}

#icf {
	font-size: 30px;
}

#sist, #icf {
	font-family: 'MyriadAppleSemibold';
}

#content {
	margin: 30px 0 30px 0;
	font-size: 13px;
}

#links {
	border-bottom: 1px solid #DEDEDE;
	padding-bottom: 10px;
}

.menuItem {
	margin-right: 20px;
}

#links span {
	font-family: 'MyriadAppleSemibold';
	border-bottom: 10px solid #4FBA00;
}
Nota: El CSS importado homeStyle.css no contiene reglas y font.css solo contiene importaciones de tipografías @font-face.

Última edición por de-troit; 05/10/2010 a las 19:04