AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
~~~ <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> /* 元素选择器 */ h1{ color:red; } .one{ color:yellow; } /* 写样式不要使用id选择器 */ #id{ color:blue; } </style> </head> <body> <h1>元素选择器</h1> <div class="one"> class选择器 </div> <p id="id">id选择器</p> </body> </html> ~~~