我正在努力解决css的问题,我对继承有点问题.
实际上,我的代码看起来像这样:
HTML
my title
CSS
.div {color : #00FF00;} .h1 {color : #FF0000; other text size...}
问题:我的h1
文字是红色的.
正常,我已经用这种方式设置了...但我希望它是绿色的,我无法改变h1
CSS.
所以我尝试:not()
在css中使用函数:
.div {color : #00FF00;} .h1:not(.title-in-green) {other text size...} //if i have a div surrounding my h1, wanting the text green .h1(.title-in-green) {color : #FF0000; other text size...} //if not, h1 is red
不工作,正常的h1不是title-in-green
班级......
我试过:not(div.title-in-green)
但它也不起作用......
我不知道我怎么能设置它,我问你一点帮助.
提前,thx.
这很简单:
div {color : #00FF00;} h1 {color : #FF0000; other text size...} /* take a look */ div h1 { color: #00ff00; }
删除点,因为点表示类名,目标元素是通过此模式.
div h1
手段 all
that is inside a
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有