- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
大家好,我正在执行一个不同类型的可用移动网站元素,其中包括在移动设备上显示的响应式网站和标准桌面网站。现在我已经制作了基于响应式骨架的网站,我需要制作一个“无响应”的 HTML 网站。
与其经历制作 HTML 布局的过程,我是否可以从骨架框架中移除任何代码块,从而移除它的响应功能?并使其不再响应?因此会在移动浏览器上显示普通的桌面版本吗?
抱歉,如果这看起来像一个愚蠢的问题,但我想我还是要问。谢谢
最佳答案
这是骨架的 skeleton.css
的响应式网格 css:
.container {
position: relative;
width: 100%;
max-width: 960px;
margin: 0 auto;
padding: 0 20px;
box-sizing: border-box; }
.column,
.columns {
width: 100%;
float: left;
box-sizing: border-box; }
/* For devices larger than 400px */
@media (min-width: 400px) {
.container {
width: 85%;
padding: 0; }
}
/* For devices larger than 550px */
@media (min-width: 550px) {
.container {
width: 80%; }
.column,
.columns {
margin-left: 4%; }
.column:first-child,
.columns:first-child {
margin-left: 0; }
.one.column,
.one.columns { width: 4.66666666667%; }
.two.columns { width: 13.3333333333%; }
.three.columns { width: 22%; }
.four.columns { width: 30.6666666667%; }
.five.columns { width: 39.3333333333%; }
.six.columns { width: 48%; }
.seven.columns { width: 56.6666666667%; }
.eight.columns { width: 65.3333333333%; }
.nine.columns { width: 74.0%; }
.ten.columns { width: 82.6666666667%; }
.eleven.columns { width: 91.3333333333%; }
.twelve.columns { width: 100%; margin-left: 0; }
.one-third.column { width: 30.6666666667%; }
.two-thirds.column { width: 65.3333333333%; }
.one-half.column { width: 48%; }
/* Offsets */
.offset-by-one.column,
.offset-by-one.columns { margin-left: 8.66666666667%; }
.offset-by-two.column,
.offset-by-two.columns { margin-left: 17.3333333333%; }
.offset-by-three.column,
.offset-by-three.columns { margin-left: 26%; }
.offset-by-four.column,
.offset-by-four.columns { margin-left: 34.6666666667%; }
.offset-by-five.column,
.offset-by-five.columns { margin-left: 43.3333333333%; }
.offset-by-six.column,
.offset-by-six.columns { margin-left: 52%; }
.offset-by-seven.column,
.offset-by-seven.columns { margin-left: 60.6666666667%; }
.offset-by-eight.column,
.offset-by-eight.columns { margin-left: 69.3333333333%; }
.offset-by-nine.column,
.offset-by-nine.columns { margin-left: 78.0%; }
.offset-by-ten.column,
.offset-by-ten.columns { margin-left: 86.6666666667%; }
.offset-by-eleven.column,
.offset-by-eleven.columns { margin-left: 95.3333333333%; }
.offset-by-one-third.column,
.offset-by-one-third.columns { margin-left: 34.6666666667%; }
.offset-by-two-thirds.column,
.offset-by-two-thirds.columns { margin-left: 69.3333333333%; }
.offset-by-one-half.column,
.offset-by-one-half.columns { margin-left: 52%; }
}
如果你想让它不响应,把它改成这样:
.container {
position: relative;
width: 80%;
max-width: 960px;
margin: 0 auto;
padding: 0 20px;
box-sizing: border-box;
}
.column,
.columns {
width: 100%;
float: left;
box-sizing: border-box;
margin-left: 4%;
}
.column:first-child,
.columns:first-child {
margin-left: 0;
}
.one.column,
.one.columns {
width: 4.66666666667%;
}
.two.columns {
width: 13.3333333333%;
}
.three.columns {
width: 22%;
}
.four.columns {
width: 30.6666666667%;
}
.five.columns {
width: 39.3333333333%;
}
.six.columns {
width: 48%;
}
.seven.columns {
width: 56.6666666667%;
}
.eight.columns {
width: 65.3333333333%;
}
.nine.columns {
width: 74.0%;
}
.ten.columns {
width: 82.6666666667%;
}
.eleven.columns {
width: 91.3333333333%;
}
.twelve.columns {
width: 100%;
margin-left: 0;
}
.one-third.column {
width: 30.6666666667%;
}
.two-thirds.column {
width: 65.3333333333%;
}
.one-half.column {
width: 48%;
}
/* Offsets */
.offset-by-one.column,
.offset-by-one.columns {
margin-left: 8.66666666667%;
}
.offset-by-two.column,
.offset-by-two.columns {
margin-left: 17.3333333333%;
}
.offset-by-three.column,
.offset-by-three.columns {
margin-left: 26%;
}
.offset-by-four.column,
.offset-by-four.columns {
margin-left: 34.6666666667%;
}
.offset-by-five.column,
.offset-by-five.columns {
margin-left: 43.3333333333%;
}
.offset-by-six.column,
.offset-by-six.columns {
margin-left: 52%;
}
.offset-by-seven.column,
.offset-by-seven.columns {
margin-left: 60.6666666667%;
}
.offset-by-eight.column,
.offset-by-eight.columns {
margin-left: 69.3333333333%;
}
.offset-by-nine.column,
.offset-by-nine.columns {
margin-left: 78.0%;
}
.offset-by-ten.column,
.offset-by-ten.columns {
margin-left: 86.6666666667%;
}
.offset-by-eleven.column,
.offset-by-eleven.columns {
margin-left: 95.3333333333%;
}
.offset-by-one-third.column,
.offset-by-one-third.columns {
margin-left: 34.6666666667%;
}
.offset-by-two-thirds.column,
.offset-by-two-thirds.columns {
margin-left: 69.3333333333%;
}
.offset-by-one-half.column,
.offset-by-one-half.columns {
margin-left: 52%;
}
关于html - 如何制作骨架样板模板 'unresponsive',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28953474/
我正在创建一个 SSO 服务器,以将所有用户集中在 ActiveDirectory(AD) 中并在那里管理他们,而不是每个特定应用程序的数据库。 为了制作这个服务器,我使用了 IdentityServ
几天前,我了解了 HTML5 样板文件,所以我还是个新手。我正在尝试使用样板进行试验,所以我继续下载了这个 boilerplate 但我对下载选项的差异感到困惑。 有一个用于下载现成的自定义文件的按钮
在Flutter中,我们需要为在dispose()中创建的许多内容写下State,例如 final _nameController = TextEditingController(); @ov
我正在开发一个更大的项目,我对空检查有点厌倦。我有一个 MongoDB 实体(文档),该实体引用了另一个文档。几乎在每种情况下,我都会检查它是否为空,如果不是则执行某些操作。我知道 Java 8 中有
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,
每次我向项目中添加新表单时,它都会在 use 子句中删除一大堆样板文件。 uses Windows, Messages, SysUtils, Variants, Classes, Graphics
这是我的Todo应用程序的基本结构,看起来像是“main.go”; package main import ( "encoding/json" "fmt" "log"
我有一个实现接口(interface)的类。还有另一个类也实现了这个接口(interface),并且第二个类的实例支持我的类的实现。 对于接口(interface)指定的许多方法,我的类只是将它们直接
每次我想要一个 SeekBar 和一个相应的 TextView 来显示它的数值时,为了减少代码的编写,我编写了以下抽象类: abstract public class SeekBarWrapper {
我正在考虑使用 CSS 样板(kube 或任何其他)来构建我的表单。它们在示例 html 文件中工作得很好,但是如果我想在不受控制的环境中使用(意味着 css 不在我的控制范围内),它会弄乱这些样式。
我很难在 CSS 中显示我的背景图片。我创建了一个带有 .top 类的 div,但每次我使用 background-image css 属性时,除了颜色、高度和宽度外什么都没有显示。我还使用 Init
尝试使用yarn导入react-image-crop包并将其添加到react样板中。 安装包后出现此错误 Module parse failed: /Users/...../frontend/node
我正在使用 skeleton 构建网站框架,使用 a fork that compiles from LESS . 在不丢失骨架提供的底层脚手架的情况下自定义样式的正确方法是什么?我知道我可以更改变量
从开箱即用的 HTML5 样板安装中,我使用以下代码 body { background-image:url('img/bg.png'); background-repeat:repeat-y; }
我正在使用 GWT 事件和地点框架来构建我的应用程序,结果很好。让我烦恼的一件事是 ActivityMapper实现是 (1) 接收应用程序中的所有 View (2) 包含一个巨大的 if/else
我正在使用generator-babel-boilerplate然后运行npm run test-browser。这可以正常工作,但我需要在浏览器中测试一些内容,并且我不确定如何查看正在提供的内容。
我经常使用以下样板,并希望将其消除。它看起来像这样: type Configured = ReaderT Config doSomething :: Configured IO Data doSome
我正在使用 ASP.NET 样板。我有一个 Angular 应用程序(ABP 外部),我想使用我的 API。 为此,我通过 /api/TokenAuth/Authenticate 获取访问 token
我的 JS 为: (function () { var controllerId = 'app.views.dashboard'; angular.module('app').cont
我们曾经可以输入 !在 vscode 中的 html 文档中获取 html boiler plate content completion as documented here . 然而它不再起作用。
我是一名优秀的程序员,十分优秀!