我不希望我的应用程序调整大小并响应小于给定宽度的尺寸...说600px。
由于媒体查询,我不能仅在Bootstrap中执行body { min-width: 600px }
。
我该怎么办呢?
最佳答案
您可以随时调整媒体查询。
试试这个:
<head>
<link href="css/bootstrap.css" rel="stylesheet" media="screen">
<style>
@media (max-width: 600px) {
body {background:#c00;min-width:600px;}
}
</style>
</head>
<body>
<h1>Hello, world!</h1>
</body>
然后重置/编辑/覆盖此媒体查询中的所有其他元素。