标签: html hover
当你悬停(或鼠标悬停)整个事物改变颜色时,你如何制作一个简单的方格?
感谢您的帮助!
答案 0 :(得分:2)
这是:
<style type="text/css"> div.test { width: 115px; height: 115px; background-color: blue; } div.test:hover { background-color: red; } </style> <div class="test"></div>