所以我试图让它像列表项目符号一样工作,但在导航按钮的末尾。
我遇到了黑三角定位太高的问题。它比我拥有的文字(带黑色背景)更高。
下面是我的问题的一个例子。
http://dabblet.com/gist/3483670
我尝试了很多不同的东西,但我完全被难住了。可能我忽略了一些愚蠢的事情,但它可能需要我不知道的大量工作。
感谢所有的帮助。
以防链接不适合您。见下文。
CSS
a {font: 19px/26px 'Exo',Arial,sans-serif;
list-style: none outside none;
margin: 0 0 0 -10px;
padding: 0 0 58px;
font-weight:100;
text-transform: uppercase;
width: 100%;
text-decoration:none;}
a[rel="catagory"] { background:#000000; padding:0 5px 0 5px; color:#BAFF32;}
.triangle { width: 0;
height: 0;
background:no-repeat right center;
border-top: 0px solid transparent;
border-bottom: 25px solid transparent;
border-left: 15px solid black;
display:inline-block;}
HTML
<a href="index.html" rel="catagory"><span class="plus">+</span> <span>HOME</span></a><span class="triangle"></span>