怎么music位置在右边呢?

来源:3-3 移动端项目开发----表示层

李帆V

2016-05-09 14:50

573032f00001168e02470299.jpg

*{
	margin: 0;
	padding: 0;
	border: none;
	font-size: 1.5625vw;
	font-family: "Microsoft Yahei";

}
html,body {
	height: 100%;
}

/* music */
#music{
	position: fixed;
	top: 3vh;
	right: 4vm;
	z-index: 5;
	width: 15vw;
	height: 15vw;
	border: 4px solid #ef1639;
	border-radius: 50%;
	background: #fff;
}
#music > img:first-of-type {
	position: absolute;
	top: 24%;
	right: 2.5;
	width: 28.421%;

}
#music > img:last-of-type{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 79%;
} 
/* page bg */
.page > .bg{
	position: absolute;;
	width: 100%;
	height: 100%;

}


写回答 关注

1回答

  • 董超880518
    2016-05-11 09:26:30

    right: 4vm;这个不是vm,没有vm这个单位。等于说你的right是空。。。。当然不靠右啦!

    right:4vw;

    李帆V

    么么哒,解决了。

    2016-05-12 21:08:24

    共 1 条回复 >

HTML5+CSS3实现春节贺卡

又逢新春佳节,春节贺卡搞起来,学会HTML5+CSS3实现春节贺卡

110036 学习 · 450 问题

查看课程

相似问题