我希望所有文本都正确对齐,尽管Support
| Profile
| Logout
左对齐,而Welcome
右对齐。为什么会这样?
<div id="header">
<a href="#">Support</a> |
<a href="#">Profile</a> |
<a href="#">Logout</a>
<p>Welcome, Today is <script type="text/javascript">timeinit();</script></p>
</div>
#header {
background: #00557F;
border-bottom: 2px gray;
padding: 1em;
width: 100%;
height: 50px;
}
div#header p {
color: #B7DDF2;
font: 10px Arial;
margin: 0;
text-align: right;
width: 100%;
}
div#header a {
text-decoration: none;
color: #B7DDF2;
font: 10px Arial;
text-align: right;
margin: 0;
width: 100%;
}
div#header a:hover {
font: 10px Arial;
color: #FFCF8B;
text-decoration: underline;
text-align: right;
margin: 0;
width: 100%;
}