在我的网站上,我有两个SPANS:右上角的“服务”和“产品”(灰色条带)。出于某种原因,它们被垂直堆叠,我希望它们在水平方向上对齐,因为SPANS只是在文本块中标记文本的标记。
摘录:
<div id="access">
<div>
<a href="#">
<span>services </span>
</a>
<a href="#">
<span>products</span>
</a>
</div>
</div>
这个CSS是我认为的问题
#access {
/* background: #74C20E;
background: #716417;*/
display: block;
float: left;
margin: 5px auto;
background-color:rgb(181, 197, 207);
-moz-border-radius: 0px;
border-radius: 0px;
width: 1200px;
<!-- width: 940px;
-->
}
#access .menu-header,
div.menu {
font-size: 13px;
margin-left: 12px;
width: 928px;
}
#access .menu-header ul,
div.menu ul {
list-style: none;
margin: 0;
}
#access .menu-header li,
div.menu li {
float: left;
position: relative;
}
#access a {
color: white;
display: block;
line-height: 38px;
padding: 0 10px;
text-decoration: none;
}
#access ul ul {
box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
-webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
display: none;
position: absolute;
top: 38px;
left: 0;
float: left;
width: 180px;
z-index: 99999;
}
#access ul ul li {
min-width: 180px;
}
#access ul ul ul {
left: 100%;
top: 0;
}
#access ul ul a {
background: #0f9195;
line-height: 1em;
padding: 10px;
width: 160px;
height: auto;
}
#access li:hover > a,
#access ul ul :hover > a {
background: #635ba9;
color: #fff;
}
#access ul li:hover > ul {
display: block;
}
#access ul li.current_page_item > a,
#access ul li.current-menu-ancestor > a,
#access ul li.current-menu-item > a,
#access ul li.current-menu-parent > a {
color: #fff;
}
小提琴在这里
有谁知道为什么它们是垂直显示而不是水平显示?
答案 0 :(得分:7)
span
元素是内联的,除非被覆盖并且它们仍然在页面上内联。他们的父母是问题的a
元素。相关的页面结构如下所示:
<div id="access">
<div>
<a href="#">
<span>services </span>
</a>
<a href="#">
<span>products</span>
</a>
</div>
</div>
在你的CSS中你已经设置了
#access a{
display: block;
}
这导致锚点成为块级元素,并且彼此叠加,而与跨度的行为无关。只需从display: block
中移除#access a
,它就会按预期工作。
我建议你熟悉一下chrome(或任何其他)调试器https://developers.google.com/chrome-developer-tools/docs/elements,它可以让你检查你的页面并通过检查一个元素并注意那些样式来轻松地缩小这些问题。被应用。
答案 1 :(得分:2)
更改显示:阻止显示:内联块
#access a {
color: white;
display:inline-block;
line-height: 38px;
padding: 0 10px;
text-decoration: none;
}