2017年2月3日 星期五

(css)因應不同尺寸下css的各種設定

方法一>>

<link rel="stylesheet" href="" media="only screen and (min-width:600px) and (max-width:979px)">

方法二>>

@media (min-width: 768px) and (max-width: 979px) {

}