-1

我使用django forms了,我尝试了 Z-index 样式属性,但我无法得到解决方案。

这是代码:

<label class="radio">
<input id="id_myclass_only_1" type="radio" name="myclass_only"
{%if form.myclass_only.value == "1"%} checked {%endif%} value="1" /> Post to batch
{{ form.batch|idattr:id_batch }} only
</label>    

这里{{ form.batch|idattr:id_batch }}将给出下拉列表。

4

2 回答 2

0

理想情况下,在您的情况下,如果z-index不起作用,我建议您使用 a position:relative;with with z-index。这将解决您的问题。

例如,

.yourClass/ #yourId {
    position:relative;
    z-index: 9999;
}

希望这可以帮助。

PS:您可以z-index根据您的要求/输出增加/减少值。

于 2013-10-22T05:39:03.133 回答
-1

你可以使用 z-index 来解决这个问题

例如

  .class {z-index:999}
于 2013-10-22T05:41:59.730 回答