Rails 4添加样式表

时间:2014-02-02 12:16:52

标签: css ruby-on-rails-4 stylesheet

我在这个网站上搜索过一个答案,但到目前为止还没有。我正在学习曲线:在创建自己的rails应用程序时学习。

在我的app / assets / stylesheets中我有一些样式表。在公共文件夹中,我有我的index.html页面

我正在尝试添加一些样式表,但没有任何工作。我添加了这个:<%= stylesheet_link_tag "main" %> inside the application.html.erd文件。我认为应该包含样式表但仍然没有。我继续放置<%= stylesheet_link_tag "main" %> inside the index.html page but it only shows entire code as text in the browser. Am I doing something wrong?

1 个答案:

答案 0 :(得分:1)

index.html是一个html页面,它无法呈现rails命令,要么将文件名更改为index.html.erb,然后包含&lt;%= stylesheet_link_tag“main”%&gt;或者使用html的link标签在index.html中加载你的css。