Nazwa „media” nie istnieje w obecnym kontekście

W widoku maszynki do golenia ASP.NET MVC 3 mam kod:

<!DOCTYPE html>
<html>
<head>
 <style type="text/css">
    @media print
    {
    table { page-break-inside:auto; width: 100%; }
    tr    { page-break-inside:avoid; page-break-after:auto }
    thead { display:table-header-group }
    tfoot { display:table-footer-group }
    }
 </style>
</head>
<body>
<table>

Jednak dostałem błąd:

The name 'media' does not exist in the current context.

Dzięki.

questionAnswers(2)

yourAnswerToTheQuestion