为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

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

详细了解

How do I center the Responsive Design View?

  • 5 个回答
  • 1 人有此问题
  • 5 次查看
  • 最后回复者为 fingershop

more options

How do I center the Responsive Design View within the larger FF window? I use a large widescreen monitor, and when using the RDV its always way off on the left side of my monitor, but I want it to be centered in front of me. Its tiring to constantly be looking and leaning in at an angle to peer at the left side of my monitor. Is there a way to move or center the RDV view port?

How do I center the Responsive Design View within the larger FF window? I use a large widescreen monitor, and when using the RDV its always way off on the left side of my monitor, but I want it to be centered in front of me. Its tiring to constantly be looking and leaning in at an angle to peer at the left side of my monitor. Is there a way to move or center the RDV view port?

所有回复 (5)

more options

I can't find a quick fix for this using a custom style rule. margin:auto doesn't work, or percentages, presumably because the container has an indeterminate width. I suspect an add-on might be needed.

more options

You can drag the border to adjust the width and height of the window. If the window would be centered then I assume that dragging the borders would no longer work because the position of the window would have to change.

more options

@jscher2000 I'd looked to see if an add-on existed but I don't see one related to this. Its surprising to me that the RDV was placed left-justified, like old-school web design from the 90s.

@cor-el My thought was that if the RDV window were centered, dragging the right border would keep the window centered while adjusting its width. In other words, the left and right sides of the window would move in or out the same distance from the center of the window, somewhat like an elevator door.

more options

There is a toolbar on that page.

Would that have toolbar need to be above the RD window and adjust its position.

The page layout as is isn't really easy for centering the content. I've tried a few thing myself in the DOM Inspector when I found your question and just like Jefferson didn't succeed and thus didn't post a reply.

more options

I was able to move the RD window closer to the center by putting a rule in my userChrome.css. Its not perfect since its a static positioning, but it does make it a lot better. This also moves the RD toolbar, keeping it lined up with the RD window.

.browserContainer[responsivemode], vbox[anonid=browserContainer][responsivemode] {

  padding-left: 600px !important;

}