//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>

 

html css回顾总结

选择器:

元素选择器:     直接用标签名    如: h1, p, li strong

id选择器:         以"#"开头    如: #id

类选择器;       以点开头    如: .class   也可单独指定某一元素下的类,h1.class  

属性选择器:      以[]括起来标识   如: [title]

 

相关文章:

  • 2021-05-21
  • 2021-10-21
  • 2021-12-06
  • 2021-08-15
  • 2021-07-05
  • 2021-11-26
  • 2021-07-09
  • 2021-10-20
猜你喜欢
  • 2021-11-21
  • 2022-12-23
  • 2022-01-04
  • 2021-05-04
  • 2022-02-22
  • 2021-12-03
相关资源
相似解决方案