我是一个初学者请教一下大家,在Microsoft FrontPage2000中如何让所插入的超链接只显示自己需要的文字以及不显示下划线.
选中需要链接的文字,右键超链接,建立后如果有横线,进入“字体”把下划线取消就OK了
下划线去不掉,在字体属性中本来就没有选中下划线项目.还有没有别的方法.
用CSS定义
td {
font-size: 9pt; text-decoration: none;
}
不好意思我是初学的,能讲一下具体如何使用.
[html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<style type="text/css">
<!--
body {
font-size: 9pt;
}
a:visited {
color: #000000;
text-decoration: none;
}
a:link {
color: #000000;
text-decoration: underline;
}
a:hover {
color: #ff0000;
text-decoration: none;
}
-->
</style>
</head>
<body>
<a href="#">我是网管 </a>
</body>
</html>
[/html>
谢谢,我马上试试
还是不行是否软件本身要进行什么设置,我真得很急
可以用css定义,你可以去找找关于css的教程看看! |
|