level 2
是我啊池灵ლ
楼主
代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.demo{
text-decoration:none;
width: 100px;
height: 100px;
border-radius: 50%;
background-color: black;
display: inline-block;
margin:0px auto;
z-index: 0;
}
.demo:hover{
text-decoration:none;
background-color: red;
z-index: 1;
border-color: blue;
border-style: solid;
border-width: 0 3px 3px 0;
transform: left;
}
</style>
</head>
<body>
<a href="#" class="demo"></a>
</body>
</html>
我想让一个圆形的图片,当鼠标移上去的时候变成勾勾 可是现在只变蓝 不变形状 求解
2018年11月14日 15点11分
1
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.demo{
text-decoration:none;
width: 100px;
height: 100px;
border-radius: 50%;
background-color: black;
display: inline-block;
margin:0px auto;
z-index: 0;
}
.demo:hover{
text-decoration:none;
background-color: red;
z-index: 1;
border-color: blue;
border-style: solid;
border-width: 0 3px 3px 0;
transform: left;
}
</style>
</head>
<body>
<a href="#" class="demo"></a>
</body>
</html>
我想让一个圆形的图片,当鼠标移上去的时候变成勾勾 可是现在只变蓝 不变形状 求解

