css中关于字体颜色的设置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css中关于字体颜色的设置相关的知识,希望对你有一定的参考价值。
div1有透明度,div2里面的字体会继承这个透明度,所以字体颜色淡。解决:
1.
你要把div2从div1里面移出来,不成为div的子元素,然后用定位放到div1上面
2.
不移出来,div1不设置透明度,改用半透明的png图片做背景,低版本ie不支持png背景透明,你需要另外找点小技巧使其透明
3.
div1背景色用css3的RGBA颜色来设置,这个RGBA的透明度子级不会继承,可惜ie低版本不支持 参考技术A #1
中的
background-color:#000;
opacity:0.15;
这两行
换成下面两行,如果不用兼容ie的话,就使用下面第一行就行了。
background-color:
rgba(0,0,0,.15);
filter:
progid:DXImageTransform.Microsoft.Gradient(GradientType=0,
StartColorStr='#00000000',
EndColorStr='#00000000')\9;
请教下关于CKEditor富文本编辑框设置字体颜色的问题
CKEDITOR.editorConfig = function( config )
{
config.plugins = ‘about,a11yhelp,basicstyles,bidi,blockquote,clipboard,colorbutton,colordialog,contextmenu,dialogadvtab,div,elementspath,enterkey,entities,filebrowser,find,flash,floatingspace,font,format,forms,horizontalrule,htmlwriter,image,iframe,indentlist,indentblock,justify,language,link,list,liststyle,magicline,maximize,newpage,pagebreak,pastefromword,pastetext,preview,print,removeformat,resize,save,scayt,selectall,showblocks,showborders,smiley,sourcearea,specialchar,stylescombo,tab,table,tabletools,templates,toolbar,undo,wsc,wysiwygarea‘;
config.toolbarGroups = [
{ name: ‘document‘, groups: [ ‘mode‘, ‘document‘, ‘doctools‘ ] },
{ name: ‘clipboard‘, groups: [ ‘clipboard‘, ‘undo‘ ] },
{ name: ‘editing‘, groups: [ ‘find‘, ‘selection‘, ‘spellchecker‘ ] },
{ name: ‘forms‘ },
{ name: ‘links‘ },
{ name: ‘insert‘ },
‘/‘,
{ name: ‘basicstyles‘, groups: [ ‘basicstyles‘, ‘cleanup‘ ] },
{ name: ‘paragraph‘, groups: [ ‘list‘, ‘indent‘, ‘blocks‘, ‘align‘, ‘bidi‘ ] },
{ name: ‘styles‘ },
{ name: ‘colors‘ },
{ name: ‘tools‘ },
{ name: ‘others‘ },
{ name: ‘about‘ }
];
};
原文地址:https://zhidao.baidu.com/question/241519841297066324.html
以上是关于css中关于字体颜色的设置的主要内容,如果未能解决你的问题,请参考以下文章