search

Home  >  Q&A  >  body text

:not selector has no effect. Why?

<style type="text/css">	      
		.two:not(p){ color: orange; }
</style>

<div class="two">
	从脱贫攻坚,到志愿服务;从大学校园,到民营企业;从祖国边疆,到创新一线……一封封回信,饱含深情、字字暖心、催人奋进,体现着心心相印的人民情怀,蕴含着对治国理政的深刻思考,表达着对奋进新时代的殷切希望。

	<p>日报推出“牢记嘱托 奔跑追梦——收到回信之后”系列,与您一起见证发展变化、感悟初心使命。今天刊发第十一篇《莫斯科大学中国留学生:“让留学报国的光荣传统薪火相传”》。</p></div>

Normally, the content in the P tag should be the default color. The contents of the DIV except the P tag are in Orange color, but now they are all in Orange color. Why

义之义之1933 days ago1497

reply all(2)I'll reply

  • 王林

    王林2019-08-15 15:38:42

    I also tried it. As follows:

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <title></title>
        <style type="text/css">
        .demo:not(p){
                color:orange;
            }
            p {
                color:blue;
            }
        </style>
    </head>
    <body>
    <div class="demo">
         从脱贫攻坚,到志愿服务;从大学校园,到民营企业;从祖国边疆,到创新一线……一封封回信,饱含深情、字字暖心、催人奋进,体现着心心相印的人民情怀,蕴含着对治国理政的深刻思考,表达着对奋进新时代的殷切希望。
    
        <p>
            日报推出“牢记嘱托 奔跑追梦——收到回信之后”系列,与您一起见证发展变化、感悟初心使命。今天刊发第十一篇《莫斯科大学中国留学生:“让留学报国的光荣传统薪火相传”》。
        </p>
        </div>
    
    </body>
    </html>

    1565854422(1).jpg The following results were obtained:

    1565854422(1).jpg Then I tried to make some modifications:

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <title></title>
        <style type="text/css">
            div.demo:not(p){
                color:orange;
            }
              p {
                color:blue;
            }
        </style>
    </head>
    <body>
    <div class="demo">
         从脱贫攻坚,到志愿服务;从大学校园,到民营企业;从祖国边疆,到创新一线……一封封回信,饱含深情、字字暖心、催人奋进,体现着心心相印的人民情怀,蕴含着对治国理政的深刻思考,表达着对奋进新时代的殷切希望。
        <p>
            日报推出“牢记嘱托 奔跑追梦——收到回信之后”系列,与您一起见证发展变化、感悟初心使命。今天刊发第十一篇《莫斯科大学中国留学生:“让留学报国的光荣传统薪火相传”》。
        </p>
        <a>这是一个测试</a>
    </div>
    </body>
    </html>

    The results were as follows:

    1565854679(1).jpg

    reply
    0
  • 义之

    义之2019-08-13 14:46:01

    Add a non-P tag to the first paragraph, such as span


    and then .two :not(p){ color: orange; } in the style. Just put a space after two!

    reply
    0
  • Cancelreply