发布网友
共1个回答
热心网友
很简单,hover属性,写个简单的案例给你
<div class="demo"></div>
<style type="text/css">
.demo{width: 100px;height: 100px;background: #0dbd0d;}
.demo:hover{background: #00a7d9;}
</style>