网页设计中如何让把文字放在图片上显示
发布网友
发布时间:2022-04-24 15:03
我来回答
共1个回答
热心网友
时间:2023-07-24 00:15
把图片设为背景即可,以下是修改后的代码<html>
<head>
<title>框架</title>
<style>
.father{
width:500px;
height:250px;
border:1px
solid
#f76f01;
background-color:#ffffff;
}.son1{
float:left;
font:12px;
height:
}
</style>
</head>
<body>
<div
class="father"><div
class="son1"
style="background-image:url(image/1.jpg);width:100%;height:50px">把此文字放在上面的粗条上</div>
</div>
</body>
</html>