<!doctype html>
<head><meta charset="UTF-8"> <title>Media指令範例-www.tw511.com</title>
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body class="container">
<h2>Example using media directive</h2>
<img src="images/birds.png" class="style">
</body>
</html>
h2{ color: #77C1EF; } .style{ width: 900px; @media screen and (orientation: portrait){ width:500px; margin-left: 120px; } }
sass --watch C:\Ruby22-x64\style.scss:style.css
h2 { color: #77C1EF; } .style { width: 900px; } @media screen and (orientation: portrait) { .style { width: 500px; margin-left: 120px; } }