对于我的生活,我找不到允许更改Qt Creator中的智能突出显示的设置。有关示例,请参见下图。当我单击start
变量时,Qt Creator会在变量的其他位置周围放置一个框。更改这些高光的背景颜色的设置在哪里?
提前致谢。
答案 0 :(得分:4)
是的,你可以改变它:
.examples {
display:flex;
width:600px;
border:1px solid Blue;
}
.example:nth-child(1),
.example:nth-child(4)
{
flex:0 0 40%;
background:Pink;
}
.example:nth-child(2),
.example:nth-child(3)
{
flex:0 0 20%;
background:cyan;
}
.example:nth-child(3)
{
position:absolute;
margin-top:120px;
margin-left:-120px;
width:120px;
}
.example img
{
width: 100%;
height: auto;
display: block;
}
当前选择的选项(我将颜色更改为深红色或硅色):