CSS 更改沒有得到反映。為什麼?
<p>我正在開發我的網站,每當我向 CSS 檔案添加一些新行時,它只是不想使用我所做的行。 </p>
<p>不過,他們應該沒問題。 </p>
<pre class="brush:php;toolbar:false;">.what-new {
padding:2em 0 4em;
text-align:center;
}
.what-new h3 {
font-size:4em;
font-weight:700;
color:#000;
margin:0.5em 0;</pre>
<p>舉例。 </p>
<p>CSS 檔案在某個部分正在工作,但從某個地方它就停止使用我的文件。
然而,它連結在 < <strong>head</strong> > 中。 </p>
<pre class="brush:php;toolbar:false;"><link rel="stylesheet" href="style/css_2-play.css" type="text/css"/></pre> ;
<p>我的 HTML 程式碼如下(請注意,這只是程式碼的一部分):</p>
<pre class="brush:php;toolbar:false;"><div class="what-new">
<div class="container">
<h3>What's 新</h3>
<div class="blog-news">
<div class="blog-news-grid">
<div class="news-grid-left">
<h4>06</h4>
<small>of january 2015</small>
</div></pre>
<p>有人知道解決方案嗎? </p>