我的问题有两个部分:
1)有没有办法在CSS中继承另一个控件的属性和样式?假设控件没有父/子层次结构并且可以是完全不同的控件类型:
IE:
#MyFirstControl
{
width: 100px;
}
#MySecondControl
{
width: MyFirstControl.styles.width; /* This doesn't work */
}
2) 假设标签标签是任何其他标签的子标签。width 属性不能与“inherit”或“auto”一起使用。怎么了?
IE:
<style>
div
{
width: 100px;
}
</style>
<div>
<!-- This label does what it wants for width. It's not the width of the containing div -->
<label style="width: inherit">Some Text</label>
<div>