<!DOCTYPE HTML> <!-- Indicates which HTML version is being used --><HTML> <!-- HTML starts here --> <!-- Also called root element --> <head> <!-- background/setup information goes insIDe head --> <Meta charset = "utf-8" /> <!-- defines character set --> <Title> Hello Internet! </Title> <!-- website Title name --> <style type = "text/CSS"> <!-- Added for CSS --> h1{ } p{ color: red; } </style></head><body><p> This text is red </p></HTML>
因此,使用此代码,我的文本行实际上是红色的,但只要我从代码中删除h1选择器,文本就会变回黑色.任何人都可以解释为什么会发生这种情况?
解决方法 你在那里放了一个HTML评论!删除评论,它将工作:<!DOCTYPE HTML><!-- Indicates which HTML version is being used --><HTML><!-- HTML starts here --><!-- Also called root element --><head> <!-- background/setup information goes insIDe head --> <Meta charset="utf-8" /> <!-- defines character set --> <Title> Hello Internet! </Title> <!-- website Title name --> <style type="text/CSS"> p { color: red; } </style></head><body> <p> This text is red </p></body></HTML>
如果您要为< style>添加评论标签,使用CSS评论:
/** * This is a valID CSS comment *//* This one too! *//*******************************************************Even this one!*******************************************************/总结
以上是内存溢出为你收集整理的没有h1选择器,HTML和CSS p选择器不会工作全部内容,希望文章能够帮你解决没有h1选择器,HTML和CSS p选择器不会工作所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)