gpt4 book ai didi

css - 无法获取垂直对齐的链接

转载 作者:太空宇宙 更新时间:2023-11-04 02:42:10 24 4
gpt4 key购买 nike

我正在尝试创建一个语言栏转换器,它将显示指向我网站的其他版本的链接。到目前为止,我有:

<div id="lang_dropper_wrapper">
<img src="http://www.chambresdhotesdev.org/new_design/blank.gif" class="sprite-luna">
<b class="down_arrow" style="float: right;">&nbsp;</b>
<div id="lang_dropper">
<a class="smaller lang-en" href="#">English</a>
<a class="smaller lang-fr" href="#"> French</a>
<a class="smaller lang-es" href="#">Cases rurals</a>
<a class="smaller lang-mobile" href="#">Mobile</a>
</div>
</div>

...然后是 CSS:

.lang-en:before, .lang-es:before, .lang-fr:before,.lang-mobile:before {
content: ' ';
/*background: url(/new_design/sprites-all-2.png) no-repeat;*/
width: 32px;
height: 26px;
display: inline-block;
margin-right: 20px;
}

.lang-en:before {
background: green
}

.lang-es:before{
background: red;
}

.lang-fr:before{
background: yellow
}

.lang-mobile:before{
background: maroon;
}

#lang_dropper a:link {
display:block;
padding: 5px 5px 5px 10px;
font-size: 12px;
line-height: 30px;
text-align: middle;
}
#lang_dropper a:hover {
text-decoration: none;
background: #eee;
}
#lang_dropper {
position: absolute;
top: 28px;
left: 0px;
z-index: 10000000;
/*display: none;*/
float: left;
min-width: 160px;
padding: 5px 0px;
margin: 2px 0px 0px;
background-color: #FFF;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px;
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
background-clip: padding-box;
width: 200px;
}
#lang_dropper_wrapper {
position: relative;
width: 45px;
float: left;
margin-right: 3px;
margin-top: 2px;

}
#lang_dropper_wrapper:hover {
cursor: pointer;
}

我实际上为旗帜图标使用了 CSS sprite - 因此其中的混淆内容与 :before 内容,以及每个图标的类。

我唯一剩下的问题 - 是让出血的东西垂直对齐!

你可以在这里看到一个工作示例:

http://codepen.io/anon/pen/BjQgRe

它完美地工作,除了我希望文本与它们左侧的旗帜彩色图标垂直对齐之外

我尝试了各种方法,但就是无法正常工作。

建议?

谢谢!

最佳答案

为您的内联 block 元素应用vertical-align:middle

.lang-en:before, .lang-es:before, .lang-fr:before,.lang-mobile:before {
content: ' ';
width: 32px;
height: 26px;
display: inline-block;
margin-right: 20px;
vertical-align:middle; /* Add this style */
}

DEMO

关于css - 无法获取垂直对齐的链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34546391/

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