section标签用来定义一个区域:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>section</title> </head> <body> <!-- 作用等同于div,只是具备语义化 --> <section>我代表一个区域</section> </body> </html>
section标签用来定义一个区域:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>section</title> </head> <body> <!-- 作用等同于div,只是具备语义化 --> <section>我代表一个区域</section> </body> </html>