我无法让@page指令在我的CSS中运行。使用谷歌Chrome进行测试; VS2015,MVC5开发 这是我的CSS中的内容:
@page
{
size: auto; /* auto is the initial value */
/* this affects the margin in the printer settings */
margin: 0.5in 0.5in 0.5in 0.5in;
@bottom-right
{
content: "Page " counter(page) " of " counter(pages);
}
}
更具体地说,页面计数(@ bottom-right)没有显示。我是否应该在cshtml页面中添加其他内容以使其识别@page指令?
我已经研究了这个,并且使用@page获得了关于样式表设置的几个想法,但是没有找到关于所需的cshtml设置的任何内容。