<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
.test {
width: 100px;
height: 100px;
background-color: #000000;
}
/* 划入效果 */
.test:hover {
background-color: #FF0000;
}
.info {
color: steelblue;
text-decoration: none;
}
.info:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="test"></div>
<a href="http://www.baidu.com" class="info">百度知道</a>
</body>
</html>
相关文章
- 02-06前端性能优化之样式预加载
- 02-06自定义View之圆形进度条的实现,带有心跳动画效果!
- 02-06autojs之悬浮窗按钮~实现 点击后改变按钮背景颜色 的效果
- 02-06Flutter的AnimatedDefaultTextStyle实现文本样式的动画过渡切换效果
- 02-06我的Android开发之旅(二):Android三种动画效果的浅入之View动画
- 02-06列举在Web前端开发中经常会设置的特殊样式!
- 02-06列举在Web前端开发中经常会设置的特殊样式!
- 02-06前端第27次总结-节点、快捷尺寸、获取样式的方法、键盘事件、面向对象、原型、原型链、安全类、内置的构造函、继承、BOM、Git、touch事件、动画、zepto、touch
- 02-06前端开发框架Vue之findIndex() 的使用
- 02-06前端开发框架Vue之findIndex() 的使用