我正在寻找一种在 html 文件中使用 css 悬停的方法,就像我们使用 style="" 一样。如果有人对此有所了解,请回复。我不能使用单独的 css 文件或 javascript。
问问题
15870 次
1 回答
2
you cannot simply specify hover inline instead you can write css code inside your html file and assign a class name to it and give the class name to your desired element:
<html>
<head>
<style>
.myClass{
color:red;
}
.myClass:hover{
color:blue;
}
</style>
</head>
<body></body>
</html>
于 2013-10-01T16:12:36.833 回答