Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜索 | 用户支持

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

Learn More

How to change file:/// page format; get rid margin: 4em auto;

  • 2 个回答
  • 2 人有此问题
  • 2 次查看
  • 最后回复者为 cor-el

more options

I use Firefox off-line to manage many formats of private text and media files stored in folders on a removable flash drive. I created an HTML page split between a left index and right display area. The index frame holds links to folders or individual text, pdf or html files of personal information that are opened in the right display frame when clicked.

When I use Firefox and link to a folder the page format positions the folder information in the middle of the page with a margin "margin: 4em auto" while Chrome puts the folder information flush to the left. (See attached images) Is it possible to make the Firefox "file:///" information flush left to avoid all the wasted white space shown in the images below.

I use Firefox off-line to manage many formats of private text and media files stored in folders on a removable flash drive. I created an HTML page split between a left index and right display area. The index frame holds links to folders or individual text, pdf or html files of personal information that are opened in the right display frame when clicked. When I use Firefox and link to a folder the page format positions the folder information in the middle of the page with a margin "margin: 4em auto" while Chrome puts the folder information flush to the left. (See attached images) Is it possible to make the Firefox "file:///" information flush left to avoid all the wasted white space shown in the images below.
已附加屏幕截图

被采纳的解决方案

You can apply custom style rules to pages under file:///c using the Stylish extension or possibly a userContent.css file (I only tested Stylish).

For example:

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("file:///c") {
  html {padding: 0 !important;}
  body {margin:8px !important;}
}

Example screen shot attached.

定位到答案原位置 👍 1

所有回复 (2)

more options

选择的解决方案

You can apply custom style rules to pages under file:///c using the Stylish extension or possibly a userContent.css file (I only tested Stylish).

For example:

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("file:///c") {
  html {padding: 0 !important;}
  body {margin:8px !important;}
}

Example screen shot attached.

more options

You can find the CSS rules in this file that you can open via the location/address bar for inspection:

  • chrome://global/skin/dirListing/dirListing.css