下面的 css 是我应用于 Facebook、twitter 和 Google plus 链接的内容,我已经添加到我正在制作的网站中,我想制作它,以便当我在网站上向下滚动时 Facebook、twitter ,并且 Google 加号图标保留在屏幕的右上角。我添加position: fixed;
了它,当我滚动时它们留在那个角落;然而,它们堆叠在一起,这对我来说应该很容易,但我的大脑一片空白:
.facebook {
width: 40px;
height: 40px;
display: inline-block;
background: transparent url('Styling-Images/fb.png') center top no-repeat;
background-size: contain;
margin-right:5px;
position: fixed;
}
.facebook:hover {
background-image: url('Styling-Images/bgcolor.png');
}
.twitter {
width: 40px;
height: 40px;
display: inline-block;
background: transparent url('Styling-Images/tw.png') center top no-repeat;
background-size: contain;
margin-right:5px;
position: fixed;
}
.twitter:hover {
background-image: url('Styling-Images/bgcolor.png');
}
.gp {
width: 40px;
height: 40px;
display: inline-block;
background: transparent url('Styling-Images/gp.png') center top no-repeat;
background-size: contain;
margin-right:5px;
position: fixed;
}
.gp:hover {
background-image: url('Styling-Images/bgcolor.png');
}