搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

how to increate web console font size?

more options

i was able to edit font of marup view etc via stylish addon here is the code @namespace url(http://www.w3.org/1999/xhtml); @-moz-document url("chrome://browser/content/devtools/markup-view.xhtml"), url("chrome://browser/content/devtools/cssruleview.xhtml"), url("chrome://browser/content/devtools/computedview.xhtml"), url("chrome://browser/content/devtools/fontinspector/font-inspector.xhtml") {

  • {
   font-size:12px;
   font-family:'consolas';

}

i could not font the url for the web console to change its font.

pleae help

i was able to edit font of marup view etc via stylish addon here is the code @namespace url(http://www.w3.org/1999/xhtml); @-moz-document url("chrome://browser/content/devtools/markup-view.xhtml"), url("chrome://browser/content/devtools/cssruleview.xhtml"), url("chrome://browser/content/devtools/computedview.xhtml"), url("chrome://browser/content/devtools/fontinspector/font-inspector.xhtml") { * { font-size:12px; font-family:'consolas'; } i could not font the url for the web console to change its font. pleae help

被采纳的解决方案

The URL for the web console (src of iframe) is:

chrome://browser/content/devtools/webconsole.xul

However, I don't know whether it can be styled as part of the HTML namespace.

定位到答案原位置 👍 1

所有回复 (2)

more options

选择的解决方案

The URL for the web console (src of iframe) is:

chrome://browser/content/devtools/webconsole.xul

However, I don't know whether it can be styled as part of the HTML namespace.

more options

works perfectly

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url("chrome://browser/content/devtools/markup-view.xhtml"),
url("chrome://browser/content/devtools/cssruleview.xhtml"),
url("chrome://browser/content/devtools/computedview.xhtml"),
url("chrome://browser/content/devtools/fontinspector/font-inspector.xhtml"),
url("chrome://browser/content/devtools/webconsole.xul") {

* {
    font-size:12px !important;
    font-family:'consolas' !important;
}
}

由cor-el于修改