ウェブサイトのロゴはどのように最適化して、見終わったら必ず
2266 ワード
サイトロゴの最適化
以下は私が書いた練習問題のローカルコードcssコードです.
.logo a {
display: block;
overflow: hidden;
width: 175px;
height: 56px;
text-indent: -9999px;
/* font-size: 0; */
background: url(../images/logo_03.png) no-repeat;
}
htmコードは次のとおりです.
<div class="logo">
<h1>
<a href="index.html" title="logo ">logo </a>
</h1>
</div>