gpt4 book ai didi

html - Wordpress 顶部面板上的 float 社交图标

转载 作者:行者123 更新时间:2023-11-28 05:15:27 25 4
gpt4 key购买 nike

我正在尝试将两个 css 社交图标 facebook 和 linkedin float 在 wordpress 网站右侧的顶部面板上,同时使图标响应。我将两个图标都放在一个容器中,但它似乎无法控制图标甚至无法工作。

您可以找到网站右上角的图标一半显示一半隐藏在页面顶部蓝线上的菜单栏后面。

http://www.rodgersgroupllc.com/newsite/

这是 HTML:

/* Social Icons */
#socialiconwrapper{
width:100px;
height:100px;
float:right;
}
.social{
float:right;
}

html {
font-size: 10px;
}
body {
text-align: right;
}
/* Wrapper */
.icon-button {
background-color: white;
border-radius: 7.6rem;
cursor: pointer;
display: inline-block;
font-size: 2.0rem;
height: 3.6rem;
line-height: 3.6rem;
margin: 0 5px;
position: relative;
text-align: center;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
width: 3.6rem;
margin-left: auto;
margin-right: auto;
height: 30px;
}
/* Circle */
.icon-button div {
border-radius: 0;
display: block;
height: 0;
left: 50%;
margin: 0;
position: absolute;
top: 50%;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
width: 0;

}
.icon-button:hover div {
width: 3.6rem;
height: 3.6rem;
border-radius: 3.6rem;
margin: -1.8rem;
}
.twitter div {
background-color: #4099ff;
}
.facebook div {
background-color: #3B5998;
}
/* Icons */
.icon-button i {
background: none;
color: white;
height: 3.6rem;
left: 0;
line-height: 3.6rem;
position: absolute;
top: 0;
width: 3.6rem;
z-index: 10;
}
.icon-button .icon-twitter {
color: #4099ff;
}
.icon-button .icon-facebook {
color: #3B5998;
padding-right: 20px;
padding-left: 20px;
}
.icon-button:hover .icon-twitter,
.icon-button:hover .icon-facebook,
<div id='socialiconwrapper'>
<div class ='social'>
<a href="https://twitter.com/minimalmonkey" class="icon-button twitter"><i class="icon-twitter"></i><span></span></a>
</div>

<div class ='social'>
<a href="https://facebook.com" class="icon-button facebook"><i class="icon-facebook"></i><span></span></a>
</div>
</div>

谁能告诉我为什么这两个图标会重叠在一起,为什么这不起作用?

最佳答案

试试这个,从#socialiconwrapper 中删除填充和上边距。

#socialiconwrapper {
width: 100px;
height: 100px;
padding: 0px;
z-index: 999;
margin-top: 0px;
}

.social {
float: right;
height: 36px;
width: 36px;
}

关于html - Wordpress 顶部面板上的 float 社交图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46782931/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com