为什么用H1而不是W1或者W2?
这个H1只是对准 H1这个标签吗? 如果我改成W1呢? 下面用W1括起来为什么不管用呢?
这个H1只是对准 H1这个标签吗? 如果我改成W1呢? 下面用W1括起来为什么不管用呢?
2015-04-05
h1-h6是html默认的标签,不用另行定义可以拿过来就用。w1或其他什么你就需要自己定义后才能用了,例如如下代码:
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Html和CSS的关系</title> <style type="text/css"> w1{ display:block; font-size:12px; color:#930; text-align:center; } </style> </head> <body> <w1>Hello World!</w1> </body> </html>
举报