css标签选择器
<html lang="en"> <head> <meta charset="UTF-8"> <title>Hello,world</title> <!--<link rel="stylesheet" href="common.css">--> <style> .cs { color:red; font-size:19px; } </style> </head> <body> <div class="cs">hello</div> </body> </html>
<html lang="en"> <head> <meta charset="UTF-8"> <title>Hello,world</title> <!--<link rel="stylesheet" href="common.css">--> <style> .cs { color:red; font-size:19px; } </style> </head> <body> <div class="cs">hello</div> </body> </html>