Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

how to increate web console font size?

  • 2 trả lời
  • 5 gặp vấn đề này
  • 68 lượt xem
  • Trả lời mới nhất được viết bởi harpreet Singh Bhatia

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

Giải pháp được chọn

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.

Đọc câu trả lời này trong ngữ cảnh 👍 1

Tất cả các câu trả lời (2)

more options

Giải pháp được chọn

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;
}
}

Được chỉnh sửa bởi cor-el vào