网页CSS

层叠样式表:CSS Cascading Style Sheet。V2.1
控制页面样式外观。

一、样式表分三类:
1.内联样式表。——放在元素的开始标记中。——只对当前元素起作用。
<input name="txt" style="border:0px; border-bottom:1px solid black;" type="text" />

2.内嵌样式表。——放在页面的<head></head>中间。——可以对整个页面。
<head>
...
<style type="text/css">
input
{
border:0px;
border-bottom:1px solid red;
}
</style>
</head>

3.外部样式表。——放在一个单独的.css样式表文件中。——可以对整个网站。
(1)外部样式表的定义

(2)外部样式表的调用

二、样式表的选择器:
内嵌、外部样式表的一般语法:
选择器

样式=值;
样式=值;
样式=值;
....

1.基本:
(1)标签选择器:用标记名称来当选择器。
input{.....}
div{...}
span{...}
td{...}
(2)类别选择器:在HTML元素中使用class对元素进行分类,然后使用这个class的值作为选择器。
.class的名{.....}
(3)ID选择器:针对HTLM中相应ID的元素起作用。
#ID的名{...}
#d1{font-size:48px;}
#dd{border:5px dotted red;}

2.复合:
(1)用逗号隔开。——并列关系,同时起作用。
input,#dd,.yellow,.uu
{
color:gray;
line-height:28px;

}

(2)用空格隔开。——后代关系。
div uu
{
background-color:blue;
}

<input name="txt" type="text" class="uu"/>
<div>
<input name="txt" type="text" />
<input name="txt" type="text" class="uu" value="******"/>
<span>
<input name="txt" type="text" class="uu" value="******"/>
</span>
</div>
什么是后代???

(3)class二次筛选。
标签选择器.class选择器{....}
input.uu
{
border:5px double red;
}

时间: 2024-10-01 03:25:38

网页CSS的相关文章

网页css样式表部分

层叠样式表:CSS Cascading Style Sheet.V2.1  (3.0版本有些旧系统不支持) 控制页面样式外观. 一.样式表分三类: 1.内联样式表.——放在元素的开始标记中.——只对当前元素起作用. <input name="txt" style="border:0px; border-bottom:1px solid black;" type="text" />       (solid意思是实线) 2.内嵌样式表.

网页 css

css---- 层叠样式表(Cascading Style Sheet) 一,层叠样式表的分类 1,外部样式表:在外部定义样式表,然后在页面head里面附加该样式表 2,内嵌样式表:直接在网页head标签里定义样式表 3,内联样式表:放在标签的style属性里面 二,选择器 1,基本选择器 (1)id选择器:用#xx定义 (2)class选择器:用.xx定义 (3)标签选择器:<p style=""></p> 2,组合选择器 (1)用逗号隔开:表示并列关系 (2

购物网页css

@charset "utf-8"; /*清掉浏览器默认间距*/ *{margin: 0;padding: 0;}/*内外间距*/ body{ background: #f5f5f5; } .header{ width: 100%; height: 42px; } .header img{ height: 42px; float: left; } .header form{ width: 65%; height: 30px; float: left; margin-top: 5px;/*

网页CSS中*{margin:0; padding:0;}有什么用

* 这东西叫"通配符"用来匹配页面上所有元素.*{margin:0; padding:0;} 像 2L 所说,body ,ul, li ,p,h1~h6,dd,dt 等--都有默认的margin 或padding值的,加上这句就可以删除浏览器这些默认值,方面后面的设置.(注:不是没它不行,只是方便而已) 你加上面那句后页面乱,那是当然的,因为你没加时是基于有默认的margin或padding 进行设置的,去掉了默认值,就当然会乱了.咋办?一,就是不加*{margin:0; paddin

网页CSS样式属性:font字体常识

同时声明中文字体的字体名称(英文)和显示名称(中文): font-family:SimSun,"宋体"; font-family:"Microsoft YaHei","微软雅黑"; font-family:STXihei,"华文细黑","Microsoft YaHei","微软雅黑"; 永远不要忘记声明英文字体,并且英文字体应该在中文字体之前 Font-family: Georgia,

网页 css 样式 初始化

body, div, ul, ol, dl, dt, dd, li, dl, h1, h2, h3, h4 {margin:0;padding:0;font-style:normal;font:12px/22px "\5B8B\4F53",Arial, Helvetica,sans-serif} ol, ul ,li{list-style: none;} img {border: 0; vertical-align:middle;} body{color:#000000;backgro

pc网页css reset

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { padding: 0; margin: 0; }  table { border-collapse: collapse; border-spacing: 0; }  fieldset,img { border: 0; }  ol,ul { list-style: none; }  th { text-

CSS美化自己的完美网页

CSS美化自己的完美网页 CSS概述 css样式: css是英文Cascading Style Sheets的缩写,称为层叠样式表,用于对页面进行美化,CSS的可以使页面更加的美观.基本上所有的html页面都或多或少的使用css. CSS 指层叠样式表 (Cascading Style Sheets) 样式定义如何显示 HTML 元素 样式通常存储在样式表中 把样式添加到 HTML 4.0 中,是为了解决内容与表现分离的问题 外部样式表可以极大提高工作效率 外部样式表通常存储在 CSS 文件中

.Net中使用response.write(&#39;js代码&#39;)后css失去效果,解决办法。

net中使用response.write输出js会将js放在源代码的最前面,这样就可能出现破坏网页css的效果,让css失去效果 .net中使用Page.ClientScript.RegisterStartupScript(this.GetType(), "", " <script lanuage=javascript>if(confirm('确定要交卷吗?')==false){history.back()}; </script>"); 可以