猿问

css 怎么在ASP.NET用?

css 怎么在ASP.NET用?


Helenr
浏览 941回答 3
3回答

跃然一笑

设置样式一般有两种第一种:你要把样式写在一个文件中,比如再css文件夹下的css_main.css里面定义的样式/*开始菜单*/#divStart{background-image:url(../images/Main_start_bg.png);width:365px;height:440px;position:absolute;margin-left:5px;float:left;margin-top:-440px;display:none;}/*桌面图标*/.divlist{float:left;margin-left:30px;margin-top:40px;height:100px;width:80px;text-align:center;font-size:12px;color:White;}你如果要使用就要引用这个css<link href="css/css_main.css" rel="stylesheet" type="text/css" />最后你在层里把id写上就行了,因为那是id样式,类样式用class就行<div id="divStart"></div>类样式<div class="divlist"></div>第二种:在style里面写如下代码:<head id="Head1" runat="server"><title>系统备份</title><style type="text/css">html{overflow-x:hidden;overflow-y:scroll;}</style></head>

交互式爱情

在每个控件里面用css呀,再在外面写css的样式 在<title></title>下面写<style type="text/css">在这里面设置样式</style>

芜湖不芜

<head runat="server"><title>熙涵设计</title><link href="App_Themes/Master.css" rel="stylesheet" type="text/css" /></head>主要是这一句<link href="App_Themes/Master.css" rel="stylesheet" type="text/css" />
随时随地看视频慕课网APP

相关分类

CSS3
我要回答