适当的条件样式方式

时间:2015-03-04 17:43:18

标签: css polymer styling

这是元素的条件样式的正确方法吗?在Chrome上运行得很好,遗憾的是在其他浏览器上没有,但在我看来,这是非常容易和很好的方式。

<template if="{{data.Reply}}">
        <style>
            :host {
                background: #1ba1e2;
                right: 100px;
            }
        </style>

    </template>
    <template if="{{!data.Reply}}">
        <style>
            :host {
                background: #33C03A;
                left: 100px;
            }
        </style>
    </template>

<style>
        :host {
            ....
        }
</style>

0 个答案:

没有答案