【发布时间】:2016-06-27 08:13:44
【问题描述】:
我正在尝试制作一个音乐网站来展示我的音乐。我想出了如何通过将我的歌曲放在一个盒子里来制作一个有创意的播放器。但是,我不知道如何在我的框中添加文本。每当我向其中添加文本时,它都会扩展框,使其不均匀。有没有人有关于如何在不使框不均匀的情况下添加文本的提示?
<!DOCTYPE html>
<html>
<head>
<style>
div {
background-color: lightgrey;
width: 290px;
padding: 25px;
margin: 20px;
}
</style>
</head>
</style>
<body>
<div>
<audio controls>
<source src="Too High.ogg" type="audio/ogg">
<source src="Too High.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
<div>
<audio controls>
<source src="Visions of the mind.ogg" type="audio/ogg">
<source src="Visions of the mind.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
<div>
<audio controls>
<source src="Let me know.ogg" type="audio/ogg">
<source src="Let me know.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
</body>
</html>
【问题讨论】: