html5 代码问题,如何设置hover,使整个背景图片变色.

.content1{border-radius:50px;height:400px;width:300px;float:left;position:fixed;botto... .content1{ border-radius:50px ; height: 400px; width: 300px; float: left; position: fixed; bottom: 50px; left: 750px; } .content1 :hover{ background-color: white; } <div class="content1" style="background-image:url(img/1.jpg);"> <h2>AAAAAAsdasd</h2> </div>
我想让整个背景变色 ,不是这一行 ,求大神指点一下该怎么改..
展开
 我来答
匿名用户
推荐于2018-03-13
展开全部

一:就是那一行,你没有想错。只不过是其它地方做错了。

二:<div class="content1" style="background-image:url(img/1.jpg);"> <h2>AAAAAAsdasd</h2> </div>

a:这一行已经在style里面写死了,所以更改了.content:hover也不起作用,

b:background-color在有background-image的情况下,不起作用。

c:.content1 :hover这里面又多了一个空格。有的时候,也会导致失败。

三:正确的代码:

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<style type="text/css">
.content1{
border-radius:50px;
height:400px;
width:300px;
float:left;
position:fixed;
bottom:50px;
left: 750px;
background-image:url(img/1.jpg);
}
.content1:hover{
background-color: white;
background-image:url(img/2.jpg);
}
</style>
<body>
<div style=""> <h2>AAAAAAsdasd</h2> </div>
</body>
</html>
能定167
2016-08-29 · TA获得超过247个赞
知道小有建树答主
回答量:274
采纳率:66%
帮助的人:120万
展开全部
<style>
.content1{
border-radius:50px ;
height: 400px;
width: 300px;
float: left;
position: fixed;
bottom: 50px;
left: 750px;
background: url(img/1.jpg);
}

.content1:hover{
background: white;
}
</style>
<div class="content1">
<h2>AAAAAAsdasd</h2>
</div>
你代码中格式错误如下:.content1 :hover 这个css中间是不能有空格的,正确的写法是.content1:hover
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式