谁能帮我写个html代码?以图片为背景的纯页面,在图片上某一处加入文字,点击文字可以跳转到其他网址

2025-01-05 07:55:40
推荐回答(2个)
回答1:

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代码如下:

回答2:

很简单的额小例子啊,你去查demo一查一把