【发布时间】:2018-01-18 22:50:36
【问题描述】:
我正在尝试使用 :host 选择器在 WebComponent 中设置 width 和 height,但大小不会改变。这是组件的模板:
<template>
<style>
:host {
width: 100px;
height: 100px;
background-color: rebeccapurple;
}
</style>
<h1>Content</h1>
</template>
我需要做的是添加一个div 作为容器并设置它的大小
<template>
<style>
div {
width: 100px;
height: 100px;
background-color: rebeccapurple;
}
</style>
<div>
<h1>Content</h1>
</div>
</template>
我想了解为什么这是不可能的及其原因。或者如果有更好的方法来解决这个问题。
这是它的 JSBin:http://jsbin.com/gesovagapi/edit?html,css,js,output
【问题讨论】:
标签: html css web-component native-web-component