作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在编写 Polymer 概念验证时,我不断得到:
/deep/ combinator is deprecated. See https://www.chromestatus.com/features/6750456638341120 for more details.
最佳答案
您可能会看到此错误,因为您正在使用应用布局的类方法。如果您切换到使用自定义 CSS mixins,则不会出现错误。
所以只需导入:
<link rel="import" href="bower_components/iron-flex-layout/iron-flex-layout.html">
body {
@apply(--layout-vertical);
@apply(--layout-fullbleed);
}
<body class="layout vertical fullbleed">
关于google-chrome - 如何关闭 Chrome 控制台中的/deep/组合器弃用警告?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33020031/
我是一名优秀的程序员,十分优秀!