ID选择器以井号为前缀,后面为ID名称。 在标签中中定义id属性,然后在里面设置的属性值就是ID名称。 ! DOCTYPE html html lang ="en" head meta charset ="utf-8" link rel ="stylesheet" type ="text/css" href =
ID选择器以井号为前缀,后面为ID名称。
在标签中中定义id属性,然后在里面设置的属性值就是ID名称。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <link rel="stylesheet" type="text/css" href="../css/index.css" /> </head> <body> <div id="IDxuanzeqi"> </div> </body> </html>
下面在index.css文件中写入CSS样式
#IDxuanzeqi{ width:100px; height:100px; background-color;red; }
2019-08-24 10:18:43