如何删除IE中音频标签周围的空白

时间:2012-12-07 16:31:18

标签: html css html5 internet-explorer html5-audio

我想知道IE中音频标签周围的空白区域来自哪里。我似乎无法指出它。这是一个已知的问题?

<audio controls>
   <source src="http://www.w3schools.com/html/horse.ogg" type="audio/ogg">
   <source src="http://www.w3schools.com/html/horse.mp3" type="audio/mpeg">
 Your browser does not support the audio element.
 </audio>

行动中:jsFiddle

使用:IE10

截图: enter image description here

1 个答案:

答案 0 :(得分:1)

你是否将诸如body / html等元素的边距和填充清零了?

jsfiddle上的normalize.css将某些元素归零,但不包含html

尝试将* { margin:0; padding:0; }放入CSS。