* {color:red;} 与 body{color:red;}有什么区别?
<head> <style type="text/css"> * {color:red;} </style> </head>
与
<head> <style type="text/css"> body{color:red;} </style> </head>
有什么本质区别么?我看实际显示效果是一样的啊
<head> <style type="text/css"> * {color:red;} </style> </head>
与
<head> <style type="text/css"> body{color:red;} </style> </head>
有什么本质区别么?我看实际显示效果是一样的啊
2016-03-05
举报