//html基本结构
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> </body> </html>
选择器:
元素选择器: 直接用标签名 如: h1, p, li strong
id选择器: 以"#"开头 如: #id
类选择器; 以点开头 如: .class 也可单独指定某一元素下的类,h1.class
属性选择器: 以[]括起来标识 如: [title]