OK. Thank you for giving me your precious time to look over this problem.
基本上,我有一个“div”,在我的航道的屏幕上使用。 它是一条简单的航道,只有80%的“div”大体,有些案文改变了对 h的肤色。
我提出的问题是:案文自动从“div”的顶端开始,我想把这个问题集中起来。 我在“div s”等地尝试过间隙、dding、浮标、“div s”等。
我将在这里把该守则张贴在航行条码上,如果你知道如何固定,请让我知道?
成就
HTML CODE:
<div class="header">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Repairs</a></li>
<li><a href="#">Tune up/ Viruses</a></li>
<li><a href="#">System Builds</a></li>
<li><a href="#">Cables</a></li>
<li><a href="#">Contact us</a></li>
<li><a href="#">Find us</a></li>
<li><a href="#">Links</a></li>
<!-- <li><a href="/"><img src="facebook.png"></a></li> -->
</ul>
</div>
CSS CODE:
.header ul { margin:0px;}
div.header
{
width: 80%;
height: 40px;
margin-top: none;
margin-bottom: none;
margin-left: auto;
margin-right: auto;
border-top: none;
border-left: none;
border-right: none;
border-bottom: none;
background-color: #575757;
}
li
{
display: inline;
font-family: open sans, arial;
padding-right: 10px;
padding-top: 10px;
margin-left: 10px;
font-size: 20px;
}
li a
{
text-decoration: none;
color: white;
}
li a:hover
{
color: #00ccff;
}