CSS CodeIgniter'daki HTML olarak işlenir

0 Cevap php

Css / style.css mevcut Benim css dosyası:

body {
 background-color: #fff;
 margin: 40px;
 font-family: 'Lucida Grande', Verdana, Sans-serif;
 font-size: 14px;
 color: #4F5155;
}

Ben bir tarayıcıda siteyi çalıştırdığınızda, orada denetleyici sayfaya hiçbir stil ve css dosyasının yolunu bu döndürür:

<html>
<head>
<title>404 Page Not Found</title>
<style type="text/css">

body {
background-color:   #fff;
margin:             40px;
font-family:        Lucida Grande, Verdana, Sans-serif;
font-size:          12px;
color:              #000;
}
</style>
</head>
<body>
<div id="content">
    <h1>404 Page Not Found</h1>
    <p>The page you requested was not found.</p>    </div>
</body>
</html>

Herhangi burada oluyor ne fikir?

0 Cevap