我正在尝试将跨度隐藏在另一个跨度下,当有人单击最上面的跨度时,它应该消失并显示其下方的内容。
我的 HTML:
<span id="couponCode" style="display:inline-block;border:2px dashed;padding:5px;margin:5px;background:#EE4000;color:white;height:20px;text-align:center;">{{ i.couponCode }}</span><span class="cTs">Click to see code</span>
我的 CSS:
.cTs
{
left :0px;
padding:10px;
height:50px;
color:white;
width: 100px;
position: relative;
background: black;
}
但我无法定位第一个跨度...而是出现在第一个跨度的右侧....有人可以帮我吗...