谁能帮我写个html代码?以图片为背景的纯页面,在图片上某一处加入文字,点击文字可以跳转到其他网址
2个回答
展开全部
CSS代码如下:
*{
margin:0;
padding:0;
}
.bg{
width:100%;
height:600px;
background:url(images/5659067_180539001618_2.jpg) no-repeat center top;
}
.bg .nav{
width:900px;
margin:0 auto;
font-family:"宋体";
font-size:14px;
font-weight:bold;
color:#000;
padding-top:20px;
}
.bg .nav a{
text-decoration:none;
color:#000;
}
.bg .nav a:hover{
text-decoration:underline;
color:#F00;
}
DIV+CSS代码如下:
<div class="bg">
<div class="nav">
<a href="你要跳转的地址" target="_blank">我是测试内容!</a>
</div>
</div>
*{
margin:0;
padding:0;
}
.bg{
width:100%;
height:600px;
background:url(images/5659067_180539001618_2.jpg) no-repeat center top;
}
.bg .nav{
width:900px;
margin:0 auto;
font-family:"宋体";
font-size:14px;
font-weight:bold;
color:#000;
padding-top:20px;
}
.bg .nav a{
text-decoration:none;
color:#000;
}
.bg .nav a:hover{
text-decoration:underline;
color:#F00;
}
DIV+CSS代码如下:
<div class="bg">
<div class="nav">
<a href="你要跳转的地址" target="_blank">我是测试内容!</a>
</div>
</div>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询