The font size doesn't work
i have this page:
http://www.tirengarfio.c开发者_JS百科om/rs2/web/miembros/prueba
as you can see the font size is 16px but i have defined a 12px font in the file main.css.
I'm using Firefox 3.6.
Any idea?
Javi
Like others have said, instead of
/css/whatever.css
try
css/whatever.css
Doing this from my browser brought up your stylesheet.
Double check the path to your style sheets. I can't access it.
<!--<link rel="stylesheet" type="text/css" href="/css/main.css">
<link rel="stylesheet" type="text/css" href="/css/formularios.css">
<link rel="stylesheet" type="text/css" href="/css/portada.css"> -->
<link rel="stylesheet" type="text/css" href="/rs2/web/css/main.css">
<link rel="stylesheet" type="text/css" href="/rs2/web/css/formularios.css">
<link rel="stylesheet" type="text/css" href="/rs2/web/css/portada.css">
It seems like you are duplicating by mistake each stylesheet. Try deleting the first three lines which return 404.
Saludos ;-)
The problem is that your markup is not valid — specifically, you do not have a doctype declaration (<!doctype html>
) at the beginning of your source.
精彩评论