sam*_*sam 0 css conditional cross-browser
我制作了一个在所有浏览器中都可以正常呈现的网站,但是当在手机或平板电脑上查看时,体型字体的重量font-weight: 100;
刚刚好。
有没有办法编写一个 css 条件来定位手机和平板电脑,类似于 IE 条件?
<!--[if IE]>
According to the conditional comment this is IE<br />
<![endif]-->
Run Code Online (Sandbox Code Playgroud)
您应该使用媒体查询:http : //www.w3.org/TR/css3-mediaqueries/
示例(引自 Bootstrap 的网站):
/* Large desktop */
@media (min-width: 1200px) { ... }
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) { ... }
/* Landscape phone to portrait tablet */
@media (max-width: 767px) { ... }
/* Landscape phones and down */
@media (max-width: 480px) { ... }
Run Code Online (Sandbox Code Playgroud)