At the botom of a paragraph, i have a span with copyright text on, im trying to make the top border to extend the width of the paragraph which it works exactly as expected in IE but only borders the actual text in FF,
HTML
CSS
Any suggestions?
Thanks in Advance
HTML
Code:
<span class="bottomHorizontalLineText">© 2007 Alpha Personal Management</span>
Code:
.bottomHorizontalLineText{
color: #666666;
font-size: xx-small;
text-align: center;
border-top: solid 1px #CCCCCC;
margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding: 3px;
width: 100%;
}
Thanks in Advance