直接上代码,就完事了

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<body>
<style>
.parent {
margin-top:25px;
position: relative;
}

.parent .child {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width:100%;
}
</style>
<div class="parent">
<audio controls class="child">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
</body>
</html>