`
coolsooner
  • 浏览: 1312968 次
文章分类
社区版块
存档分类
最新评论

CSS 兼容性和 Internet Explorer

 
阅读更多

随着每个新版本的 Windows Internet Explorer 的发布,对级联样式表 (CSS) 标准的支持也在稳步提高。 Internet Explorer 6 是第一个完全符合 CSS 级别 1 规范的 Internet Explorer 版本。 Windows Internet Explorer 8 完全符合 CSS 级别 2 修订 1 (CSS 2.1) 规范,并支持某些 CSS 级别 3 (CSS 3) 的功能。

如果您的网站面向的浏览器包括早期版本的 Internet Explorer,则您需要知道这些版本符合的 CSS 级别规范。 本文简述了各个最近的 Internet Explorer 版本的 CSS 合规性(包括 Internet Explorer 8 中提供的支持)。

注意 Internet Explorer 8 中新增的 CSS 功能仅当您的页面在 IE8 模式(或更高版本)中呈现时可用。 通过在您页面的标题部分中包含以下 meta 标记,可以确保您的页面以 IE8 模式显示:

<meta http-equiv="X-UA-Compatible" content="IE=8" />

有关文档兼容性模式的更多信息,请参见“定义文档兼容性”。

本文以 MSDN 上的CSS 参考文档(可能为英文网页)为基础且结构较为松散。 本文包含以下各节:

简介

每个表均列出了最近的 Internet Explorer 版本中分组 CSS 功能的支持状态信息。 在每一节中,第一个表表示 CSS 2.1 或早期版本中引入的功能,第二个表表示万维网联合会 (W3C) 为 CSS 3 规划的功能。

单元格中的值“是”表示在相应版本的 Internet Explorer 中实现了该功能。

单元格中的值“部分”表示只在相应版本的 Internet Explorer 中部分实现了该功能。 有关更多信息,请单击链接查看 MSDN 上该功能的参考页。

单元格中的值“否”表示未在相应版本的 Internet Explorer 中实现该功能。

At 规则

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
@charset
@import
@media
@page 部分 部分 部分 部分

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
@font-face
@namespace

选择器

元素选择器

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
.value {sRules} (请参见注释) 部分 部分 部分
#value {sRules} ID
E {sRules} 类型
* {sRules} 通用

注释 在 Internet Explorer 7 之前的版本中,每个元素只能有两个类选择器。

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
ns|E { sRules } 已指定命名空间

属性选择器

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
[att=val] { sRules } 相等 [=]
[att] { sRules } 存在 []
[att|=val] { sRules } 连字符 [|=]
[att~=val] { sRules } 空白 [~=]

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
[ns|attr] { sRules } 已指定命名空间
[att^=val] { sRules } 前缀 [^=]
[att*=val] { sRules } 子字符串 [*=]
[att$=val] { sRules } 后缀 [$=]

连结符

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
E+F { sRules } 相邻同级 (+)
E>F { sRules } 子级 (>)
EF { sRules } 后代

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
E~F { sRules } 常规同级 (~)

伪类

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
:active { sRules } :active 部分
:first-child { sRules } :first-child
:focus { sRules } :focus
:hover { sRules } :hover 部分 部分 部分
:lang(C) { sRules } :lang()
:link { sRules } :link
:visited { sRules } :visited
@page :first { sRules } @page :first
@page :left { sRules } @page :left
@page :right { sRules } @page :right

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
:root { sRules } :root
:nth-child() { sRules } :nth-child()
:nth-last-child() { sRules } :nth-last-child()
:nth-of-type() { sRules } :nth-of-type()
:nth-last-of-type() { sRules } :nth-last-of-type()
:last-child { sRules } :last-child
:first-of-type { sRules } :first-of-type
:last-of-type { sRules } :last-of-type
:only-child { sRules } :only-child
:only-of-type { sRules } :only-of-type
:empty { sRules } :empty
:target { sRules } :target
:not(X) { sRules } :not()
:enabled { sRules } :enabled
:disabled { sRules } :disabled
:checked { sRules } :checked
:indeterminate { sRules } :indeterminate
:default { sRules } :default
:valid { sRules } :valid
:invalid { sRules } :invalid
:in-range { sRules } :in-range
:out-of-range { sRules } :out-of-range
:required { sRules } :required
:optional { sRules } :optional
:read-only { sRules } :read-only
:read-write { sRules } :read-write

伪元素

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
:after { sRules } :after
:before { sRules } :before
:first-letter { sRules } :first-letter
:first-line { sRules } :first-line

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
::before { sRules } ::before
::after { sRules } ::after
::first-letter { sRules } ::first-letter
::first-line { sRules } ::first-line
::selection { sRules } ::selection
::value { sRules } ::value
::choices { sRules } ::choices
::repeat-item { sRules } ::repeat-item
::repeat-index { sRules } ::repeat-index

属性

CSS 2.1:
Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
{ sRule!important } !important 声明 部分 部分 部分

列表

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
{ list-style : sStyle } list-style
{ list-style-image : sStyle } list-style-image
{ list-style-position : sStyle } list-style-position
{ list-style-type : sStyle } list-style-type 部分

颜色和背景

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
{ color : sColor } color
{ background : sBackground } background
{ background-attachment : sAttachment } background-attachment 部分 部分 部分
{ background-color : sColor } background-color
{ background-image : sLocation } background-image
{ background-position : sPosition } background-position 部分 部分 部分 部分
{ background-repeat : sRepeat } background-repeat

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
{ color-profile : sProfile } color-profile
{ rendering-intent : sIntent } rendering-intent
{ background : sBackground1,
sBackground2, etc. }
background (multiple)
{ background-clip : sClip } background-clip
{ background-origin : sOrigin } background-origin
{ background-break : sBreak } background-break
{ background-size : sSize } background-size

字体和文本

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
{ direction : sDirection } direction
{ font : sFont } font
{ font-family : sFamily } font-family
{ font-size : sSize } font-size
{ font-style : sStyle } font-style
{ font-variant : sVariant } font-variant
{ font-weight : sWeight } font-weight 部分 部分 部分 部分
{ letter-spacing :sSpacing} letter-spacing
{ line-height :sHeight} line-height
{ text-align : sAlign } text-align
{ text-decoration :sDecoration} text-decoration
{ text-indent : sIndent } text-indent
{ text-transform :sTransform} text-transform
{ unicode-bidi : sAlign } unicode-bidi
{ vertical-align : sAlign } vertical-align
{ white-space : sWrap } white-space 部分 部分 部分 部分
{ word-spacing : sSpacing } word-spacing 部分 部分 部分 部分

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
{ font-effect :sEffect} font-effect
{ font-emphasize :sEmphasize } font-emphasize
{ font-size-adjust :sSizeAdjust} font-size-adjust
{ font-smooth :sSmooth } font-smooth
{ font-stretch :sStretch } font-stretch
{ hanging-punctuation :sHangingPunctuation } hanging-punctuation
{ punctuation-trim :sTrim} punctuation-trim
{ ruby-align :sRubyAlign} ruby-align
{ ruby-overhang :sRubyOverhang} ruby-overhang
{ ruby-position :sRubyPlacement} ruby-position
{ ruby-span : sRubySpan } ruby-span
{ text-align-last : sAlignLast } text-align-last 部分 部分 部分 部分 部分
{ text-emphasis :sEmphasis } text-emphasis
{ text-justify :sJustify } text-justify
{ text-outline : sOutline } text-outline
{ text-overflow : sOverflow} text-overflow 部分 部分 部分 部分
{ text-shadow : sShadow } text-shadow
{ text-wrap : sWrap } text-wrap
{ word-break :sBreak} word-break 部分 部分 部分 部分 部分
{ word-wrap : sWrap } word-wrap
{ writing-mode : sFlow } writing-mode

生成的内容

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
{ content : sContent } content
{ counter-increment : sCounter } counter-increment
{ counter-reset : sCounter } counter-reset
{ quotes : sQuotes } quotes

边框和布局

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
{ border :sBorder} border
{ border-bottom :sBottom} border-bottom
{ border-bottom-color :sColor} border-bottom-color
{ border-bottom-style :sStyle } border-bottom-style
{ border-bottom-width :sWidth} border-bottom-width
{ border-collapse : sCollapse } border-collapse 部分 部分 部分 部分
{ border-color :sColor} border-color
{ border-left :sLeft } border-left
{ border-left-color :sColor} border-left-color
{ border-left-style :sStyle} border-left-style
{ border-left-width : sWidth } border-left-width
{ border-right :sRight} border-right
{ border-right-color :sColor} border-right-color
{ border-right-style :sStyle} border-right-style
{ border-right-width :sWidth} border-right-width
{ border-spacing :sSpacing} border-spacing
{ border-style :sStyle} border-style 部分 部分 部分
{ border-top :sTop } border-top
{ border-top-color :sColor} border-top-color
{ border-top-style :sStyle } border-top-style
{ border-top-width : sWidth } border-top-width
{ border-width : sWidth } border-width
{ caption-side : sLocation } caption-side
{ clear :sClear} clear
{ empty-cells : sEmptyCells } empty-cells 部分
{ float :sFloat} float
{ margin :sMargin} margin
{ margin-bottom :sHeight} margin-bottom
{ margin-left :sWidth } margin-left
{ margin-right :sWidth} margin-right
{ margin-top : sHeight } margin-top
{ padding :sPadding} padding
{ padding-bottom :sPadding} padding-bottom
{ padding-left :sPadding} padding-left
{ padding-right :sPadding} padding-right
{ padding-top :sPadding} padding-top
{ table-layout : sLayout } table-layout

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
{ border-break : sBreak } border-break
{ border-image : sImage } border-image
{ border-radius : sRadius } border-radius
{ box-shadow : sShadow } box-shadow

定位

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
{ bottom :sBottom} bottom 部分 部分 部分
{ clip :sClip } clip
{ display :sDisplay} display 部分 部分 部分 部分
{ height :sHeight } height
{ left :sPosition} left 部分 部分 部分
{ max-height :sMaxHeight } max-height
{ max-width :sWidth } max-width
{ min-height :sMinHeight } min-height
{ min-width : sMinWidth } min-width
{ overflow : sOverflow } overflow 部分 部分 部分
{ position : sPosition } position 部分 部分 部分
{ right :sPosition} right 部分 部分 部分
{ top :sTop} top 部分 部分 部分
{ visibility :sVisibility} visibility
{ width :sWidth} width
{ z-index :vOrder} z-index 部分 部分 部分 部分

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
{ overflow-x : sOverflow } overflow-x 部分 部分 部分
{ overflow-y : sOverflow } overflow-y 部分 部分 部分

打印

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
{ orphans : nLines } orphans
{ page-break-after : sBreak } page-break-after
{ page-break-before : sBreak } page-break-before
{ page-break-inside : sBreak } page-break-inside
{ widows : nLines } widows

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
{ fit : sFit } fit
{ fit-position : sPosition } fit-position
{ image-orientation : sOrientation } image-orientation
{ page : sPage } page
{ size : sSize } size

用户界面

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
{ cursor : sCursor } cursor
{ outline : sOutline } outline
{ outline-color : sColor } outline-color
{ outline-style : sStyle } outline-style
{ outline-width : sWidth } outline-width

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
{ appearance : sAppearance } appearance
{ box-sizing : sSizing } box-sizing
{ icon : sIcon } icon
{ nav-down : sNavDown } nav-down
{ nav-index : sIndex } nav-index
{ nav-left : sNavLeft } nav-left
{ nav-right : sNavRight } nav-right
{ nav-up : sNavUp } nav-up
{ outline-offset : sOffset } outline-offset
{ outline-radius : sRadius } outline-radius
{ resize : sResize } resize

多列布局

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
{column-break-after: sSize } column-break-after
{column-break-before: sSize } column-break-before
{column-break-inside: sSize } column-break-inside
{column-count: sCount } column-count
{column-gap: sSize } column-gap
{ column-rule : sRule } column-rule
{ columns : sColumns } columns

语音

Internet Explorer 中不支持以下 CSS 3 语音属性:

  • voice-volume
  • voice-balance
  • speak
  • pause
  • pause-after
  • pause-before
  • rest
  • rest-before
  • rest-after
  • cue
  • cue-after
  • cue-before
  • mark
  • mark-before
  • mark-after
  • voice-family
  • voice-rate
  • voice-pitch
  • voice-pitch-range
  • voice-stress
  • voice-duration
  • phonemes

媒体查询

Internet Explorer 中不支持以下 CSS 3 媒体查询属性:

  • width
  • height
  • device-width
  • device-height
  • device-aspect-ratio
  • color
  • color-index
  • monochrome
  • resolution
  • scan
  • grid

数字

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
<number>
<length>
<percentage>
<integer>

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
<angle>
<time>
<frequency>

字符串

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
<string>
/code

形状

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
rect()

函数

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
url()
counter()
attr()

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
calc()

颜色

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
<color>(名称)
<color>(#rrggbbor#rgb 表示法)
<color>(rgb(r,g,b) 表示法)
<color>(系统颜色)
透明 部分

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
<color>(rgba(r,g,b,a) 表示法)
<color>(hsl(h,s,l) 表示法)
<color>(hsla(h,s,l,a) 表示法)

关键字

CSS 2.1:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
auto 部分
inherit

CSS 3:

Internet Explorer 5 Internet Explorer 5.5 Internet Explorer 6 Internet Explorer 7 Internet Explorer 8
initial

单位

Internet Explorer 3.0 和更高版本中支持以下所有单位:

  • px
  • pt
  • pc
  • cm
  • mm
  • in
  • em
  • ex
  • %

Internet Explorer 中不支持以下任何 CSS 3 单位:

  • deg
  • grad
  • rad
  • ms
  • s
  • Hz
  • kHz
  • turn
  • gd
  • rem
  • vw
  • vh
  • vm
  • ch

另请参阅

分享到:
评论

相关推荐

    浏览器兼容.doc-CSS hack姐姐兼容性问题

    解决浏览器兼容性问题的主要方法是CSS hack。由于不同的浏览器,比如Internet Explorer 6,Internet Explorer 7,Mozilla Firefox等,对CSS的解析认识不一样,因此会导致生成的页面效果不一样,得不到我们所需要的页面...

    HTML5&CSS3网页制作:transitionduration属性.pptx

    兼容性:Internet Explorer 10、Firefox、Opera 和 Chrome 支持 transition-duration 属性。Safari 支持替代的 -webkit-transition-duration 属性。 Internet Explorer 9 以及更早版本的浏览器不支持 transition-...

    bootstrap-ie11:用于Bootstrap 5的Internet Explorer 11兼容性解决方案

    bootstrap-ie11:用于Bootstrap 5的Internet Explorer 11兼容性解决方案

    使用 Windows Internet Explorer 8 开发工具修复您的站点

    Windows Internet Explorer 8 引入了一组新的开发人员...开发人员工具可帮助 Web 开发人员执行多种任务,包括查看单个属性、确定为何将特定 CSS 规则应用于元素、脚本运行时调试和使用不同的文本兼容性模式预览网页。

    IE 11 32位离线安装包

    企业模式是可以在 Windows 8.1 更新和 Windows 7 设备的 IE11 上运行的一种兼容性模式,该模式允许网站使用已修改的浏览器配置来呈现内容,其中该浏览器配置旨在模拟 Windows Internet Explorer 8,以避免与在早期...

    IE6、IE7、IE8浏览器下的CSS、JS兼容性对比

    Internet Explorer 6中查看使用 Microsoft JScript 的网页,可能会遇到web浏览器速度较慢的性能问题。

    CSS3与动画有关的属性transition、animation、transform对比(史上最全版)

    浏览器兼容性 CSS3 transform 属性 Internet Explorer 10、Firefox、Opera 支持 transform 属性。 Internet Explorer 9 支持替代的 -ms-transform 属性(仅适用于 2D 转换)。 Safari 和 Chrome 支持替代的 -webkit-...

    modal_box:纯CSS模态框,响应良好,支持良好的浏览器

    Internet Explorer 8(甚至在递归的“兼容性视图”中;请参见下文); Internet Explorer 9; Internet Explorer 10; Internet Explorer 11; Microsoft Edge(所有版本); Internet Explorer(Microsoft ...

    CSS3中Transform动画属性用法详解

    需要注意的是这三个属性都是css3新增的属性,各大浏览器支持方面还不是特别好,使用时要特别注意浏览器的兼容性,本文重点介绍Transform的使用方法,具体内容如下 浏览器支持情况: Internet Explorer 10、Firefox、...

    HTML5&CSS3网页制作:支持视频和音频的浏览器.pptx

    嵌入视频和音频 支持视频和音频的浏览器 浏览器介绍 01 PC端的浏览器 浏览器是网页运行的平台,常用的浏览器有 IE、火狐(Firefox)、谷歌(Chrome...的兼容性 总结 小任务 要求: 1、预习和元素的定义和用法。 THANKS

    多浏览器测试工具 spoon

    IEtester最近几个版本兼容性不是太好;IE-Collections也是兼容问题比较多,有时会打不开页面。更有同行安装了虚拟机,虚拟机中安装其他版本的浏览器来解决这个问题。  Browser Sandbox 采用了一种虚拟技术(与沙箱...

    IE 11 64位离线安装包+所需补丁

    企业模式是可以在 Windows 8.1 更新和 Windows 7 设备的 IE11 上运行的一种兼容性模式,该模式允许网站使用已修改的浏览器配置来呈现内容,其中该浏览器配置旨在模拟 Windows Internet Explorer 8,以避免与在早期...

    Bootstrap V5.1 完整版(含代码用例成品)分享

    Bootstrap 5.1 版本的兼容性已经完全转向 “新” 浏览器了,使用的时候需要注意下。 使用 yarn 在 nodeJS 项目中添加 bootstrap 库也非常简单,命令如下: $ yarn add bootstrap 而且官方文档也着重强调了,...

    滚动输出:ScrollOut可检测滚动的变化,以显示,视差和CSS可变效果!

    滚动 滚动动画 我为什么要用这个? 使用CSS或JavaScript将元素滚动到视图中时对其进行动画处理或显示 ...兼容性 核心功能与所有现代台式机和移动浏览器兼容。 还支持Internet Explorer 11。 维护者 维护者 的GitHub

    目前比较全的CSS reset重设方法总结

    在设计师们的梦想中都存在着这样的一个完美世界:所有的浏览器都能够理解和适用多有CSS规则,并且呈现相同的视觉效果(没有兼容性问题)。但是,我们并没有生活在这个完美的世界,现实中发生的失窃却总是恰恰相反,很多...

    peekobot:一个简单的,由选择驱动的聊天机器人框架,适用于您的网站,仅用100多行原始JavaScript(和一些CSS)编写

    我使用async / await和CSS自定义属性,因此,从广义上讲,不支持Internet Explorer和Opera Mini。 您可以使用Babel或类似工具将IE11兼容性引入JavaScript。 您还可以根据需要手动内联CSS自定义属性。 用法 Peekobot...

    一行代码解决各种IE兼容问题,IE6,IE7,IE8,IE9,IE10

    ie7 – js中是一个JavaScript库(解决IE与W3C标准的冲突的JS库),使微软的Internet Explorer的行为像一个Web标准兼容的浏览器,支持更多的W3C标准,支持CSS2、CSS3选择器。它修复了许多的HTML和CSS问题,并使得透明...

    css中IE判断语句 if !IE

    在进行WEB标准网页的学习和应用过程中,网页对浏览器的兼容性是经常接触到的一个问题。其中因微软公司的Internet Explorer(简称IE)占据浏览器市场的大半江山,此外还有Firefox、Opera等。需要对这些浏览器进行兼容...

    7个你不可不知的IE hack

    CSS hack由于不同的浏览器,比如Internet Explorer 6,Internet Explorer 7,Mozilla Firefox等,对CSS的解析认识不一样,因此会导致生成的页面效果不一样,得不到我们所需要的页面效果。 这个时候我们就需要针对不同...

Global site tag (gtag.js) - Google Analytics