如何从某个断点将固定布局变成流畅的布局?

时间:2012-10-29 08:12:46

标签: css responsive-design frontend

我需要修复我的布局,直到窗口宽度超过960px。之后,它应该保持流畅,同时保持以前的网格系统的关系。这个问题有最好的做法吗?

1 个答案:

答案 0 :(得分:0)

它被称为媒体查询。并且您可以使用它来编写特定宽度的css,这样就可以将布局变成流畅的布局。

@media (min-width:400px) and (max-width: 950px) {
    /* your css for the fluid layout */
}

以下是http://webdesignerwall.com/tutorials/css3-media-queries

的小指南