问答详情
源自:3-2 企业网站制作之页面头部制作(一)

怎么我的超链接感觉没用呢?颜色也没变

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>无标题文档</title>

</head>

<link href="css/main.css" rel="stylesheet" type="text/css">

<script src="js/setHomeSetFav.js" type="text/javascript" charset="gb2312"></script>>

<body>

<div class="top">

       <div class="top_content">

         <ul>

            <li><a herf="#">联系我们</a></li>

           <li><a herf="#" onclick="AddFavorite(window.location,document.title)">加入收藏</a></li><!--要收藏的网址,加入收藏的页面标题-->

          <li><a herf="#" onclick="setHome(window.location)">设为首页</a></li>

         </ul>

       </div>

</div><!--top结束-->   

</body>

</html>

@charset "utf-8";

/* CSS Document */


*

{

margin:0;

padding:0;

font-size:12px;

}

 

body

{

background-color:#F5F5F5;

}

.top

{

width:100%;

height:27px;

background:url(../images/top_bg.jpg)repeat-x;

}

.top_content

{

width:1000px;

margin:0 auto;

}

.top_content li

{

list-style-image:url(../images/li_bg.gif);

float:right;

width:70px;

line-height:27px;

}


提问者:这是一个很酷的昵称 2017-08-07 18:44

个回答

  • 阿阿影
    2017-08-08 16:24:44
    已采纳

    herf这个写错了哦,应该是href

  • 阿阿影
    2017-08-08 16:22:02

    把@charset "utf-8";注释掉或者直接删掉就好了。