简单教程
提交运行
代码编辑器:
<!DOCTYPE html> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdn.bootcss.com/foundation/5.5.3/css/foundation.min.css"> <script src="https://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script> <script src="https://cdn.bootcss.com/foundation/5.5.3/js/foundation.min.js"></script> <script src="https://cdn.bootcss.com/foundation/5.5.3/js/vendor/modernizr.js"></script> <h2>根据屏幕尺寸显示元素</h2> <p>可以重置浏览器窗口查看效果</p> <p class="hide-for-small-only">你不在屏幕宽度小于 40.0625em 的小型设备上</p> <p class="hide-for-medium-up">你不在屏幕宽度大于 40.0625em 的设备上</p> <p class="hide-for-medium-only">你不在屏幕宽度在 40.0625em 到 64.0625em 的设备上</p> <p class="hide-for-large-up">你不在屏幕宽度大于 64.0625em 的设备上</p> <p class="hide-for-large-only">你不在屏幕宽度在 64.0625em 到 90.0625em的 大型设备上</p> <p class="hide-for-xlarge-up">你不在屏幕宽度大于 90.0625em 的设备上</p> <p class="hide-for-xlarge-only">你不在屏幕宽度在 90.0625em 到 120.0625em 的大型设备上</p> <p class="hide-for-xxlarge-up">你不在屏幕宽度大于 120.0625em 的超大型设备上</p>
运行结果: