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 new</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>