4

我正在关注这本书http://pragprog.com/book/rails4/agile-web-development-with-rails并且我的 scss 文件无法正常工作。

css文件是这个:

.store {
  h1 {
    margin: 0;
    padding-bottom: 0.5em;
    font:  150% sans-serif;
    color: #226;
    border-bottom: 3px dotted #77d;
  }

  /* An entry in the store catalog */
  .entry {
    overflow: auto;
    margin-top: 1em;
    border-bottom: 1px dotted #77d;
    min-height: 100px;

    img {
      width: 80px;
      margin-right: 5px;
      margin-bottom: 5px;
      position: absolute;
    }

    h3 {
      font-size: 120%;
      font-family: sans-serif;
      margin-left: 100px;
      margin-top: 0;
      margin-bottom: 2px;
      color: #227;
    }

    p, div.price_line {
      margin-left: 100px;
      margin-top: 0.5em; 
      margin-bottom: 0.8em; 
    }

    .price {
      color: #44a;
      font-weight: bold;
      margin-right: 3em;
    }
  }
}

和html文件如下:

<% if notice %>
<p id="notice"><%= notice %></p>
<% end %>

<h1>Your Pragmatic Catalog</h1>

<% @products.each do |product| %>
  <div class="entry">
    <%= image_tag(product.image_url) %> 
    <h3><%= product.title %></h3>
    <p><%= sanitize(product.description) %></p>
    <div class="price_line">
      <span class="price"><%= product.price %></span>
    </div>
  </div>
<% end %>

CSS 加载正确,但未应用。但是,如果添加一个带有“store”类的周围 div,它就可以工作。这本书没有提到这种情况,我相信它应该“自动”应用这种风格,对吧?

谢谢。

**编辑* ** * ****

我发现了问题。对于可能遇到相同问题的人,请检查文件:

应用程序/资产/视图/布局/application.html.erb

body标签应该有以下代码:

<body class="<%= controller.controller_name %>">
4

2 回答 2

2

太好了,您找到了解决方案。但我试图解释幕后发生的事情。

您使用 css的方式不是一般约定。该设施附带一些额外的宝石。检查此链接https://stackoverflow.com/a/4564922/1160106。使用这些宝石,您可以设计您的 css 更加DRY的方式。


一般公约

如果要将样式应用于以下h1元素

# Here "store" class is the parent element of "h1"
<div class="store">
     <h1> some text </h1>
</div>

将需要以下css方式

#Here also "store" is written before "h1"
.store h1 
{ 
   #some designs
}

你的情况发生了什么?

可能您正在维护控制器明智的 css 文件。并假设你有一个stores_controller. 这就是为什么你的类stores_controller被封装在.store {}块中的原因。像

.store {
    h3 {font-size: 120%;}
}

因此很明显,您的h3元素需要具有store类的父元素。class="<%= controller.controller_name %>"你是通过添加body标签来实现的。毫无疑问,该<body>标签是所有后续节点的父节点。现在,当您击球stores_controllerclass="store",您的风格正在发挥作用。

这种方法非常干燥且值得推荐。

于 2012-10-16T11:31:18.777 回答
0

根据您的代码,所有样式都在.store { }块之间,因此只要您将 div 与“store”类包围起来,它就不会反映出来

例如

.store {
  h3 {
      font-size: 120%;
      font-family: sans-serif;
      margin-left: 100px;
    }
}

.store h3 {
      font-size: 120%;
      font-family: sans-serif;
      margin-left: 100px;
      margin-top: 0;
      margin-bottom: 2px;
      color: #227;
    }
于 2012-10-16T10:43:58.820 回答