gpt4 book ai didi

html - 标签在包含文本时位置不同

转载 作者:行者123 更新时间:2023-11-28 01:58:52 26 4
gpt4 key购买 nike

我遇到了一个我无法弄清楚的奇怪问题。我有一个包含 anchor 标记的 div,这些 anchor 标记根据其中是否包含文本而定位不同。

我想要做的是制作一个简单的条形图,条形图内显示数字,数字在底部对齐。在下面的示例中,顶部图表的条形图与底部正确对齐,但在底部图表中,只要我添加数字,它就会翻转到顶部。有什么想法吗?我该如何解决(或更好的方法)?

http://jsfiddle.net/dKM3T/2/

<!DOCTYPE html>
<html lang="en">
<head>
<style type="text/css">
.graph {
width: 650px;
}
.graph .bar {
width: 20px;
margin: 1px;
display: inline-block;
background: #666;
color: #fff;
font-size: 10px;
text-align: center;
text-decoration: none;
}
</style>
</head>
<body>
<div class="graph">
<a href="#" class="bar" style="height:40px" data-index="1"></a>
<a href="#" class="bar" style="height:20px" data-index="2"></a>
<a href="#" class="bar" style="height:30px" data-index="3"></a>
<a href="#" class="bar" style="height:20px" data-index="4"></a>
<a href="#" class="bar" style="height:12px" data-index="5"></a>
<a href="#" class="bar" style="height:32px" data-index="6"></a>
<a href="#" class="bar" style="height:34px" data-index="7"></a>
<a href="#" class="bar" style="height:12px" data-index="8"></a>
<a href="#" class="bar" style="height:40px" data-index="9"></a>
<a href="#" class="bar" style="height:20px" data-index="10"></a>
</div>
<div class="graph">
<a href="#" class="bar" style="height:40px" data-index="1">40</a>
<a href="#" class="bar" style="height:20px" data-index="2">20</a>
<a href="#" class="bar" style="height:30px" data-index="3">30</a>
<a href="#" class="bar" style="height:20px" data-index="4">20</a>
<a href="#" class="bar" style="height:12px" data-index="5">12</a>
<a href="#" class="bar" style="height:32px" data-index="6">32</a>
<a href="#" class="bar" style="height:34px" data-index="7">34</a>
<a href="#" class="bar" style="height:12px" data-index="8">12</a>
<a href="#" class="bar" style="height:40px" data-index="9">40</a>
<a href="#" class="bar" style="height:20px" data-index="10">20</a>
</div>
</body>
</html>

最佳答案

试试这个:

<style type="text/css">
.graph {
width: 650px;
}
.graph .bar {
vertical-align: bottom;
width: 20px;
margin: 1px;
display: inline-block;
background: #666;
color: #fff;
font-size: 10px;
text-align: center;
text-decoration: none;
}
</style>

数字仍然显示在图表的顶部,但图表不再翻转。如果您希望数字显示在底部,您可能需要采用与此处不同的方法。

关于html - <a> 标签在包含文本时位置不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15187592/

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