更新:The polymer docs现在已更新,以反射(reflect)下面的答案
我正在做一个 polymer 1.0 应用程序。
我正在尝试在屏幕的一部分水平上布置一些纸质工具栏。
似乎我可以让 iron-flex-layout 的 @apply(--layout-horizontal) 处理某些元素,但不能处理其他元素。
我在下面做了一个小测试来展示发生了什么。
有趣的是,如果我将 --layout-horizontal 样式的内容复制到 chrome 开发工具中的标签中,它就可以工作。如果我只是将 --layout-horizontal 的内容复制到新样式中,它也可以工作。
这是怎么回事的示例。
第一个 div 是 0.5 到 1.0 迁移指南中的示例。
第二个 div 是示例,而是尝试布局一个部分而不是跨度。
第三行是我明确复制和应用 --layout-horizontal 样式的地方。
<link rel="import" href="../../bower_components/polymer/polymer.html">
<link rel="import" href="../../bower_components/iron-flex-layout/iron-flex-layout.html">
<dom-module id="layout-test">
<style>
/* Example from migration guide */
.header {
@apply(--layout-horizontal --layout-center);
}
/* A hack that makes it work */
.hack {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-direction: row;
-webkit-flex-direction: row;
flex-direction: row;
}
</style>
<template>
<!-- Working example from migration guide -->
<div class="header">
<img src="https://www.polymer-project.org/images/logos/lockup.svg">
<span class="name">name</span>
</div>
<!-- This example does not work -->
<div class="header">
<img src="https://www.polymer-project.org/images/logos/lockup.svg">
<section class="name">name</section>
</div>
<!-- This hack works fine -->
<div class="hack">
<img src="https://www.polymer-project.org/images/logos/lockup.svg">
<section class="name">name</section>
</div>
</template>
</dom-module>
<script type="text/javascript">
Polymer({
is: 'layout-test'
});
</script>
完整的元素可以在这里找到 https://github.com/nburn42/polymer-1.0-LayoutTest
谢谢,
弥敦道
最佳答案
根据 polymer 的 github ( https://github.com/Polymer/polymer/issues/1601 ) 上的 issue 1601,他们改变了自定义 CSS mixin 可以传递给 @apply 的方式。您必须将它们分开,而不是在单个 @apply 调用中链接多个 mixin。这意味着以下代码片段:
.header {
@apply(--layout-horizontal --layout-center);
}
变成:
.header {
@apply(--layout-horizontal);
@apply(--layout-center);
}
Polymer 确实需要更新其网站上的文档和示例,因为没有反射(reflect)此类更改将导致采用 Polymer 的人减少。
关于css - Polymer 1.0 iron-flex-layout仅适用于某些标签,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30685941/