标签:文本样式 关键字 样式 width orm over tran src 字母
框架标签: <iframe src="引入页面的地址”frameborder= "0无边框1有边框”width= "宽度”height= "高度”name= "给框架起个名字"></iframe>
CSS的三种引入方式:1 .内嵌:直接在标签中添加style属性 格式: <标签名style= "样式1 :样式值1;样式2:样式值2;">
2.内联:在head标签中添加<style></style>
格式:<style> 选择器{样式1:样式值1; 样式2:样式值2....}</style>
3.外部引入:需要先创建一个xxxx. css文件中描述s tyle标签中的内容放进去在head标签中添加link标签 <link href="xxxx.css ">
选择器:1.id选择器:在标签中添加id属性<标签名 id="id值"> <标签名> id值规则:只能是字母数字下划线$符组成,其中不能以数字开头,不能是关键字 样式:#id值{样式值:样式值1;样式2:样式值2;..}
2.class选择器 在标签中添加class属性<标签名 class="class值"> <标签名> 样式:.class值{样式值:样式值1;样式2:样式值2;..}
3.元素选择器 样式:元素标签名(){样式值:样式值1;样式2:样式值2;..}
选择器关系 父子关系 选择器1 选择器2{样式值:样式值1;样式2:样式值2;..} 并列关系 选择器1,选择器2{样式值:样式值1;样式2:样式值2;..}
CSS样式 1.文本样式 字体大小 font-size:10px 字体粗细: font-weight:blod加粗 lighter加细 font-decoration:overline顶划线 underline下划线 lin-through删除线 none什么都没有 text-indent:2em
行高 line-heght:50px 字母大小写text-transform uppercase大写 lowercase小写 字体居中text-align:center
2.
标签:文本样式 关键字 样式 width orm over tran src 字母
原文地址:https://www.cnblogs.com/cst123/p/12901562.html