1. 程式人生 > >響應式佈局初涉(一)

響應式佈局初涉(一)

從一個例子擼起

<html lang="en">
<head>
	<link rel="stylesheet" type="text/css" href="link.css" media="only screen and (max-width:480px)">
	<style type="text/css">
		@media screen and (min-width:480px){
			body{
				background: blue;
			}
		}
		
	</style>
</head>
<body>
</body>
</html>

這段程式碼針對瀏覽器寬度的不同實現body的不同樣式,在這裡採用了外聯式和內聯式。

外聯式,CSS3增加了一個新屬性 media ,only screen and (max-width:480px)的意思是當screen的with小於480px時才會引入外聯式樣式

內聯式,CSS3中,用@media引入對screen的判斷,當screen的min-width大於480px時,顯示該樣式

當然以上都是忽略了IE系的。。。