2

我想知道 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

截屏: 在此处输入图像描述

4

1 回答 1

1

您是否将 body/html 等元素的边距和填充清零?

normalize.csson jsfiddle 在某些元素上将其归零,但不包括在html其中。

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

于 2012-12-07T17:45:21.163 回答