本文所分享的知识点是【css控制超链接(css超链接样式)】,欢迎您喜欢我爱IT技术网所分享的教程、知识、经验或攻略,下面是详细的讲解。
css控制超链接(css超链接样式)
一、伪类
CSS控制元素的某种状态---偽类(用于向某些选择器添加特殊的效果)
偽类的语法:元素标签 偽类名称{属性:属性值;}
二、超链接
a:link:未访问的链接
a:hover:鼠标移动到链接上
a:active:鼠标按下链接
a:visited:已访问的链接
如果在点击过后再返回到该页面还有一些效果的话 就按照该顺序给链接添加状态 L V H A
<style type="text/css">
a:link{text-decoration:none; color:#000;}
a:visited{text-decoration:none; color:#6F0;}
a:hover{text-decoration:underline; color:#00F;}
a:active{text-decoration:overline; color:#F00;}
a.web:visited{text-decoration:none; color:#000;}
</style>
</head>
<body>
<div id="link">
<a href="http://www.jb51.net/css/<a href="http://www.baidu.com">http://www.baidu.com</a>" class="web">网页设计</a> |
<a href="http://www.jb51.net/css/<a href="http://www.baidu.com">http://www.baidu.com</a>">平面设计</a> |
<a href="http://www.jb51.net/css/<a href="http://www.baidu.com">http://www.baidu.com</a>">网站前端</a> |
<a href="http://www.jb51.net/css/<a href="http://www.baidu.com">http://www.baidu.com</a>">动画设计</a> |
<a href="http://www.jb51.net/css/<a href="http://www.baidu.com">http://www.baidu.com</a>">软件开发</a> |
<a href="http://www.jb51.net/css/<a href="http://www.baidu.com">http://www.baidu.com</a>">网页营销</a>
<a href="http://www.jb51.net/css/<a href="http://www.baidu.com">http://www.baidu.com</a>">我会闪</a>
</div>
</body>
三、:focus{属性:属性值}设置对象在成为输入焦点时的样式(IE6/7不支持)
<style type="text/css">
input{
width:200px;
height:25px;
border:2px solid #FF0;
}
input:focus{
background:#9FF;
}
</style>
</head>
<body>
<label>用户名: <input type="text" name="username"/></label>
<label>密 码: <input type="text" name="pwd"/></label>
</body>
四、练习
1.给链接加上边框
<style type="text/css">
a{
font-size:36px;
}
a:link{
color:#009;
text-decoration:none;
border-bottom:2px solid #F00;
line-height:150%;
}
</style>
</head></p>
<p><body>
<a href="http://www.jb51.net/css/154091.html#">PHP.COM中文网</a>
</body>
2.在超链接中用背景图象添加记号(给超链接a加上背景图片即可)
<style type="text/css">
a:link{
color: #f00;
padding-left:13px;
background:url(fasfas.gif) no-repeat left center;
text-decoration:none;
}
a:visited{
color:#900;
padding-left:13px;
background:url(das.gif) no-repeat left center;
text-decoration:none;</p>
<p>}
<!--将visited改为hover可以实现鼠标浮动的效果-->
</style>
</head></p>
<p><body>
<p>PHP100.COM中文网,<a href="http://www.jb51.net/css/<a href="http://www.baidu.com">PHP</a">www.baidu.com">PHP</a</a>>资源共享站</p>
</body>
7.创建按钮和翻转
<style type="text/css">
a {
Display: block;
Width: 140px;
Padding: 3px;
height:30ox
Line-height: 30px;
Background-color: #94b8e9;
Border: 1px solid black;
Color: #000;
Text-decoration: none;
Text-align: center;
}
a:hover {
background-color: #369;
color:#fff;
}
</style>
</head>
<body>
<a href="http:\\www.baidu.com">PHP100.COM中文网</a>
</body>
8.纯 css 工具提示
<style type="text/css">
a.tooltip {
position: relative;
}
a.tooltip span {
display: none;
}
a.tooltip:hover {
font-size: 100%;
}
a.tooltip:hover span {
display:block;
position:absolute;
top:1em;
left:2em;
padding: 0.2em 0.6em;
border:1px solid #996633;
background-color:#FFFF66;
color:# 000;
}
</style>
</head>
<body>
<p><a href="http://www.jb51.net/css/154091.html#">PHP.COM<span>PHP官网</span></a></p>
<p>
<a href="http://www.jb51.net/css/<a href="http://www.anfsdfasdybufdsfdasfdd.com/">http://www.anfsdfasdybufdsfdasfdd.com/</a>" class="tooltip">Andy Budd<span> (This website
rocks) </span></a> is a web developer based in Brighton England.
</p>
</body>
关于css控制超链接(css超链接样式)的相关讨论如下:
相关问题:怎么用CSS控制点击超链接后的颜色!!
答:使用:visited伪类选择器 如下设置页面上所有超链接标记点击后的字体颜色为红色 a:visited{ color:red;} >>详细
相关问题:CSS如何控制超链接
答:超链接的样式有以下四种状态: a:link {color: #FF0000} /* 未访问的链接 */a:visited {color: #00FF00} /* 已访问的链接 */a:hover {color: #FF00FF} /* 当有鼠标悬停在链接上 */a:active {color: #0000FF} /* 被选择的链接 */通过以上方法可以... >>详细
相关问题:css控制某个div里的超链接的样式怎么设置?
答:这样写就可以了(假设类为classname): div.classname a{样式设置} 补充其他: div.classname a:link{样式设置} div.classname a:visited{样式设置} div.classname a:hover{样式设置} div.classname a:active{样式设置} >>详细
- 评论列表(网友评论仅供网友表达个人看法,并不表明本站同意其观点或证实其描述)
-
