标签: css responsive-design frontend
我需要修复我的布局,直到窗口宽度超过960px。之后,它应该保持流畅,同时保持以前的网格系统的关系。这个问题有最好的做法吗?
答案 0 :(得分:0)
它被称为媒体查询。并且您可以使用它来编写特定宽度的css,这样就可以将布局变成流畅的布局。
@media (min-width:400px) and (max-width: 950px) { /* your css for the fluid layout */ }
以下是http://webdesignerwall.com/tutorials/css3-media-queries