HTML5 - css file -
i trying make html document , having strange issue. when css file in different directory works great when move css file same directory html file doesn't recognize it.
i changed link href of css.
thanks help
ok sorry, elaborate- – when use -
<title>profile</title> <link href="./me_files/as.css" media="screen, handheld" rel="stylesheet" type="text/css">
it works. , when move file same folder , use
<title>profile</title> <link href="as.css" media="screen, handheld" rel="stylesheet" type="text/css">
it doesn't work
ok managed fix it. problem needed drop the- media="screen, handheld"
thank all!!!
"when use -
<title>profile</title> <link href="./me_files/as.css" media="screen, handheld" rel="stylesheet" type="text/css"> - works , when move file same folder , use - <title>profile</title> <link href="as.css" media="screen, handheld" rel="stylesheet" type="text/css">
doesn't work"
have tried
href="./as.css" ?
edit
maybe have relative links inside css need changed?
Comments
Post a Comment