Başka bir yanıtta belirtildiği gibi, DOM gölgesinin sunucusunu biçimlendirmek için @host
seçiciyi kullanın. Özel bir öğe durumunda, özel öğenin sunucusu kendisidir.
Burada, ana öğenin veya özel öğenin kendisinin bir özel öğenin <style>
etiketinin içinden nasıl biçimlendirileceğine dair bir örnek verilmiştir.
<!DOCTYPE html>
<html>
<head>
<title>index</title>
<script src="packages/polymer/boot.js"></script>
</head>
<body>
<polymer-element name="my-element">
<template>
<style>
@host {
my-element {
display: block;
border: 1px solid black;
}
}
p {
color: red;
}
#message {
color: pink;
}
.important {
color: green;
}
</style>
<p>Inside element, should be red</p>
<div id="message">
The message should be pink
</div>
<div class="important">
Important is green
</div>
<div>
<content></content>
</div>
</template>
<script type="application/dart" src="index.dart"></script>
</polymer-element>
<p>outside of element, should be black</p>
<div id="message">
The outside message should be black
</div>
<div class="important">
Outside important is black
</div>
<my-element>Hello from content</my-element>
<!-- If the script is just an empty main, it's OK to include inline. -->
<!-- Otherwise, put the app into a separate .dart file. -->
<script type="application/dart">main() {}</script>
</body>
</html>
Bildirim tarzında @host
blok: Bu özel özel öğe ve unsur kapsamaz Çünkü
@host {
my-element {
display: block;
border: 1px solid black;
}
}
, bir bloğa varsayılan değil. İşte
o tarz zaman neye benzediği:
Bu gün artık polymer.dart için bir yapıcı özelliği gerekir. En azından buna ihtiyacım yok. –