我想知道如何创建特定于safari(5)或更少的CSS文件。
答案 0 :(得分:3)
如果您想要为Safari和Chrome执行一些CSS代码,则必须检查-webkit-
前缀
This is an example仅适用于浏览器为Safari或任何了解-webkit-
前缀的浏览器
@media screen and (-webkit-min-device-pixel-ratio:0)
{
#safari { display: block; }
}
提醒一下,这不是一个自动防故障解决方案。
答案 1 :(得分:0)
要创建代码块或其他预格式化文本,请缩进四个空格:
This will be displayed in a monospaced font. The first four spaces
will be stripped off, but all other whitespace will be preserved.
Markdown and HTML are turned off in code blocks:
<i>This is not italic</i>, and [this is not a link](http://example.com)
要创建非块,而是内联代码范围,请使用反引号:
$
字符只是window.jQuery
的快捷方式。
如果要在列表中包含预格式化的块,请缩进八个空格:
这是这样,但现在遵循代码块:
Skip a line and indent eight spaces.
That's four spaces for the list
and four to trigger the code block.