`

Fixed Pixels Page Width

 
阅读更多

The whole page displays with a fixed width of pixels. It does not consider the resolution of the screen and the browser's display resolution.

A example of this pattern would be http://www.apple.com/support/

 

 

In this case, the user will see the page with the same width of pixels, no matter what the resolution of his browser is.

 

Pros:

1. The user under different kind of resolution will have the same feeling.

2. From implementation point of view, because the outer most container has a fixed width, it is rather easy to calculate the content's position.

 

Cons:

1. If the user's screen is bigger than the width, then there will be margins on left and right, which looks kind of ugly.

2. If the user's screen is smaller than the width, then the user has to resort to the horizone scrool bar to see the full screen, which is kind of inconvenient.

 

Implementation:

The css to control the width:

width: 980px;
margin: 0px auto; /* to let it display in the middle*/

 In http://www.apple.com/support/ , they put the css on the div of header, container, and footer.

 In http://www.sina.com.cn/ , they give a container div with a fixed width, and every thing is in it.

 

Related Patterns:

Full Screen Page Width

  • 大小: 391.1 KB
分享到:
评论

相关推荐

    前端开源库-fixed-width-string

    "fixed-width-string" 是一个开源库,专门为前端开发者提供了处理此类需求的工具。这个库支持ANSI转义序列,因此在终端显示时能够正确处理颜色和其他特殊格式,提升终端界面的视觉效果。 首先,让我们深入理解什么...

    解决iframe中fixed失效的问题

    然而,当我们在 `iframe` 内部使用 `position: fixed;` 属性时,可能会遇到一些问题,即 `fixed` 定位在某些情况下可能失效。这通常与浏览器的渲染机制和 `iframe` 的跨域限制有关。本文将深入探讨这个问题,并提供...

    Text::FixedWidth.pm-开源

    Text :: FixedWidth是一个Perl模块,它提供了一个简单的面向对象的界面来解析和处理固定的列宽文本文件。 该模块当前公开三个公共方法:new,print_all和select_distinct。

    Python库 | delimited2fixedwidth-1.0.7.tar.gz

    资源分类:Python库 所属语言:Python 资源全名:delimited2fixedwidth-1.0.7.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059

    List View Fixed Table Header

    Fixed table header appropriate with width of columns (table body) and you still can use sort on columns. Scroll down your page and see!

    FixedTable.7z

    table固定左侧多列,画面中可对多个table进行固定,谷歌、ie都试过没... width:800,//显示宽度 height:300,//显示高度 fixColExtraWidth:11//额外追加显示宽度,不需要可设为0 }); (注:table中要含有thead、tbody)

    fixed_width_import:从固定宽度的文本文件导入数据-matlab开发

    输入: - 文件名(字符串):要打开的文件名(必须包含扩展名) - startline (int): 从哪里开始阅读- number_of_lines (int): 你要阅读的行数- columns_width (vector):一个包含每列宽度的向量。 (列的宽度是其...

    ch02-fixed-width-1M.data

    从定宽文件中导入数据

    bootstrap-table-fixed-columns.js

    例如,你可以通过"data-fixed-columns"`属性来设定需要固定的列数,然后通过"data-fixed-column-left"`或"data-fixed-column-right"`来指定固定在左侧或右侧的列数。 ```html <table id="fixedTable" data-toggle=...

    Fixed-Parameter Algorithms

    固定参数算法(Fixed-Parameter Algorithms)是一种理论计算机科学领域内的研究方向,旨在处理那些在经典复杂性理论中被认为是难解的问题。这些问题通常被归类为NP完全问题,这意味着它们很难找到高效算法来解决。...

    fixed-columns

    在网页设计和开发中,"fixed-columns"是一个常见的概念,特别是在处理数据密集型的应用场景,如数据表或者报表展示。这个特性允许用户在滚动浏览长表格时,将某些列(通常是列头)固定在屏幕的一侧,使得这些关键...

    IE6下fixed实现头部定位

    其中一个著名的挑战就是对CSS(层叠样式表)中`position: fixed`属性的支持。`fixed`定位是CSS布局的一个重要特性,它允许元素相对于浏览器窗口定位,即使在滚动页面时也始终保持其位置。然而,在IE6中,`fixed`定位...

    position_fixed

    width: 100%; background-color: #333; color: white; } ``` 这段代码会让页脚始终固定在浏览器窗口的底部。 然而,IE6不支持`position: fixed;`,所以我们需要使用一些 hack 或者 JavaScript 解决方案。一种...

    bootstrap-table-fixed-columns(css,js)

    这个项目的扩展`bootstrap-table-fixed-columns`专注于解决在大表格中固定首列或首行的问题,使得在滚动时这些重要列始终保持可见,提高用户在浏览长表格时的可读性和交互性。在网页设计中,尤其是在数据密集型应用...

    real-fixed-cam

    "real-fixed-cam"是这一技术中的一种特定模型,专门用于处理真实场景下固定摄像头拍摄的图像。在这个模型中,"real"意味着它在实际场景中进行了训练和测试,确保了对真实世界图像的良好适应性;"fixed-cam"则表明该...

    ios解决fixed定位失效并mintui的loadmore上拉加载

    使用视窗单位(viewport width/height:`vw/vh`)代替像素单位,可以使得元素的大小基于视口的宽度或高度,这样在滚动时`fixed`元素的位置可以相对稳定。例如,`top: 50vh;`会将元素保持在屏幕中央。 3. **监听...

    超简单在IE6中实现Fixed效果并无抖动的返回顶部

    width: 50px; height: 50px; background-color: #f00; text-align: center; line-height: 50px; cursor: pointer; color: #fff; font-size: 24px; border-radius: 50%; } window.onload = function()...

    前端项目-fixed-sticky.zip

    在前端开发领域,"fixed-sticky" 是一个常见的概念,主要涉及到网页布局和用户体验优化。这个压缩包"fixed-sticky.zip"很可能包含了一个前端项目,该项目着重于实现元素的固定定位(fixed positioning)和粘性定位...

Global site tag (gtag.js) - Google Analytics