CSS和Index.cshtml似乎没有在我的MVC应用程序中连接。有什么想法吗?

时间:2016-12-01 15:23:30

标签: c# asp.net

我正在使用MVC创建一个博客,但不知何故,我的内容CSS和我的视图 - > Home-> Index.cshtml之间的链接不能正常工作。一连串的变化,应该发生的变化是一眨眼的瞬间,然后消失了 - 在我的博客上似乎没有任何改变。大多数情况似乎没有用。

事实是,我在CSS中使用以下代码:

.post>h2, .post>div{

    color: red;
    background: #ff0000;
    padding: 15px;
    margin: 10px;
}

我的Index.cshtml中有相应的帖子类:

<div class="row">
    <div class="post col-md-6">
        <h2 class="title">Post title</h2>
        <div class="about">
            Posted on <i>29-Nov-2016</i> by <i>Dinyo Donchev(donchev)</i>
        </div>
        <div class="body">
            Here goes post content...
        </div>
        <p><a class="btn btn-default" href="http://go.microsoft.com/fwlink/?         
        LinkId=301865">Learn more &raquo;</a></p>
   </div>

所以我认为这应该是合法的,完美的并且有效,但不知何故情况并非如此。

关于我如何解决这个问题的任何想法。

非常感谢你的推荐。希望网站上某处存在完全相同的问题,因为我没有看到它。如果有 - 抱歉失去你的时间并发布不相关的帖子。

干杯!

1 个答案:

答案 0 :(得分:0)

您必须在代码的头部添加以下行:

<link rel="stylesheet" href="stylesheet.css">

您必须将“stylesheet.css”更改为您的文件名。 然后它应该工作。

我希望这是,你想知道的。