我有一些CSS,这在我的CSS文件时不应用到我的设计师在Visual Studio中,但是当我发布应用到该页面。 这个问题是大规模放缓网站的发展,因为我试图拿起CSS,因为我去...
下面是CSS的样本位:
.header {
background-color: #ccc;
border-bottom: 1px solid #666;
color: #222;
display: block;
font-size: 20px;
font-weight: bold;
padding: 100px 100px 100px 100px;
text-align: center;
text-decoration: none;
text-shadow: 0px 1px 0px #fff;
background-image: -webkit-gradient(linear, left top, left bottom,
from(#ccc), to(#999));
}
我将页面上的CSS:
<header>
<asp:Label ID="lblQuestion" runat="server" Font-Bold="True" Font-Size="16pt" Text="Your question goes here..." CssClass="header"></asp:Label>
</header>
我加入CSS页面:
<link rel="stylesheet" type="text/css" href="mycss.css" media="only screen and (max-width: 480px)" />
我是很新的CSS,所以我希望有人能告诉我我在做什么是停止的Visual Studio正确渲染CSS的设计...
另外,如果我把我的CSS标签,直接在页面上,然后它的工作原理,但我宁愿让我的CSS出在它自己的文件,它可以重复使用。
例如作风工作:
<style>
.header {
background-color: #ccc;
border-bottom: 1px solid #666;
color: #222;
display: block;
font-size: 20px;
font-weight: bold;
padding: 100px 100px 100px 100px;
text-align: center;
text-decoration: none;
text-shadow: 0px 1px 0px #fff;
background-image: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#999));
}
</style>
谢谢