Можно ли вложить один VML округлый в другой?
Например:
<v:roundrect style="display:block;width:100px;height:100px;" fillcolor="#eee">
Hi
<v:roundrect style="display:block;width:50px;height:50px;" fillcolor="#c00">
Hey
</v:roundrect>
</v:roundrect>
Я не вижу фона внутреннего скругления, когда использую эту разметку.
Есть идеи?
1 ответ
Решение
Никакие формы VML не могут быть вложены друг в друга. Вы должны расположить их так, чтобы они правильно перекрывались.
<div style="position:relative;">
<v:roundrect style="display:block;width:100px;height:100px;" fillcolor="#eee">
Hi
</v:roundrect>
<v:roundrect style="display:block;width:50px;height:50px; top: 25px; left:25px; position:absolute;" fillcolor="#c00">
Hey
</v:roundrect>
</div>