我在網絡表單中添加了一個css。 css可以很好地處理html文件,也可以在visual studio的設計視圖中使用。但是,當它在IIS中運行時,不會顯示css。請幫助我。Asp.net中的CSS webform
CSS
body{
background: #efefef;
}
.head
{
margin-top:0px;
min-height:40px;
min-width: 102%;
background-color:green;
color:blue;
text-align:center;
margin-left:-10px;
margin-right:0px;
padding-top:10px;
}
#content
{
margin-top:10px;
margin-bottom:10px;
margin-left:0px;
min-height:100%;
}
#wrapper
{
width:83%;
min-height:inherit;
background-color:red;
float:left;
}
#sidebar
{
width:15%;
float:right;
}
#sidebar1
{
background-color:green;
min-height:20%;
margin-bottom:2px;
}
#sidebar2
{
min-height:40%;
background-color:blue;
margin-bottom:2px;
}
#sidebar3
{
background-color:violet;
min-height:40%;
}
HTML
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<link type="text/css" rel="stylesheet" href="E:\Demo\main.css" />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div class="head">Thiagarajar College of Engineering</div>
<div id="content">
<div id="wrapper">
srini
</div>
<div id="sidebar">
<div id="sidebar1">ji</div>
<div id="sidebar2">sr</div>
<div id="sidebar3">ni</div>
</div>
</div>
</form>
</body>
</html>
提供更多的細節提出一些CSS這是行不通的。並且也把html一樣。 –