链接到基础样式表似乎不起作用

问题描述 投票:0回答:1

我已经在论坛上搜索了这个(例如:HTML/CSS: Foundation stylesheet wont link),但没有答案对我的情况有帮助。

我在这里下载了当前版本的Foundation:https://foundation.zurb.com/sites/download.html/

然后我把它放到我的项目文件夹中,并在我的index.html中建立了它的链接。链接如下所示:

  <link rel="stylesheet" href="Foundation/css/foundation.css"> 

与外部资源的其他链接有效。

所以我尝试了实现并从基础示例中复制了一些代码,这个:

   <div class="card-info info">
     <div class="card-info-label">
       <div class="card-info-label-text">
        FYI
       </div>
      </div>
   <div class="card-info-content">
     <h3 class="lead">Chappie</h3>
      <p>In the near future, crime is patrolled by a mechanized police 
      force. When one police droid, Chappie, is stolen and given new 
     programming, he becomes the first robot with the ability to think 
     and feel for himself.</p>
   </div>
 </div>

然而,没有任何反应。我只是输出没有任何样式的字符串,所以我猜这个链接不起作用。我的网站正在以角度运行,这会造成问题吗?如果是这样,为什么另一个链接工作,但这不是?

zurb-foundation
1个回答
0
投票

要使构建块工作,您必须从底部复制SCSS / CSS内容,您还需要基础cc.css文件。

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.