我是ASP.NET Web应用程序构建的新手,我使用HTML 5 audio
标记来显示供用户使用的音频播放器。
我正在使用以下代码:
<tr>
<td>
<a href="BeatsDetails.aspx?beatID=<%#:Item.BeatID%>">
<img src="/Catalog/Images/Thumbs/<%#:Item.BeatPath%>" width="75"
height="75" style="border: solid" />
<br />
</a>
<br />
<audio controls>
<source src="/Beats/Kalimba.mp3" type="audio/mp3" />
<embed height="30" width="70" src="/Beats/Kalimba.mp3">
<p>Your browser does not support the audio element </p>
</audio>
</td>
</tr>
我在Firefox,Chrome和Safari上运行测试代码并且显示效果很好。
然而,在Internet Explorer 11中,我得到了音频播放器庞大且重叠的地方。如何在IE中显示与其他浏览器相同的内容?: