摘要:
一、操作属性 属性分类 固有属性 href、src..... 共有属性 id,class,name...... 自定义属性 abc= '1234' 操作属性的方法 区别 1.prop不能操作自定义属性 2.prop获取Boolean类型的属性是 true/false 获取属性值 attr(属性名称) 阅读全文
摘要:
一、基本选择器 id选择器 元素名称选择器 类选择器 选择所有元素 组合选择器 <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> .blue{ background: blue; } </styl 阅读全文
摘要:
span设置为块级元素 <!-- 将span设置为块级元素 --> <span style="display: block;">abc</span> div设置为行内元素 <!-- 将div设置为行内元素 --> div前面的文本<div style="color: red; display: in 阅读全文
摘要:
一、基本选择器 通用选择器 选择所有的元素,此处*为所有通配符 * { color: #0000FF; } 元素选择器 p { font-size: 18px; font-weight: bold; } ID选择器 #whit{ color: red; } 类选择器 .wh{ font-family 阅读全文