我在我的ASP .Net MVC應用程序中使用無點。它編譯.less文件很好。但如果我在我的.less文件中使用Mixins函數,請將我解釋爲「資源解釋爲樣式表,但以MIME類型text/plain傳輸」。如果我從我的.less文件中刪除Mixins函數,一切工作正常。 我的錯是什麼?dotless不能在我的ASP .Net MVC應用程序中編譯Mixins函數
我在Visual Studio 2010,Windows 7(IIS 7)上使用ASP.Net MVC 3。
編輯:
.LESS輸入
body
{
padding: 0;
margin: 0;
}
.border-all-around (@defaultBorder: 1px, @defaultColor: black)
{
border: @defaultBorder solid @defaultColor;
}
.MyStandardBox
{
.border-all-around;
}
a
{
color: #12aee8;
text-decoration: none;
}
輸出:
body
{
padding: 0;
margin: 0;
}
結果Maxins功能後截斷!
舉個例子,請 – 2012-04-12 20:43:10
我加了一個結果的例子。 – Ata 2012-04-13 06:18:48