我需要将图像放在另一张图像上。
这是我的代码:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<div class = "row text-center" style="">
<div class="col-xs-6 text-center" style="background-color:none; margin-top:10px;">
<img src="1.jpg" width="250" height="250">
<img src="plus.png" width="50px" height="50px">
</div>
</div>
</body>
</html>
&#13;
就像:
我的实际需要是图像上的加号,如下所示:
答案 0 :(得分:5)
试试这个
<强> CSS:强>
.product-holder {
position: relative;
display: block;
}
.plus-image {
left: 50%;
top: 50%;
position: absolute;
margin-top: -25px;
margin-left: -25px;
}
<强> HTML 强>
<div class = "row text-center" style="">
<div class="col-xs-6 text-center" style="background-color:none; margin-top:10px;">
<div class='product-holder'>
<img src="1.jpg" width="250" height="250" class='product-image'>
<img src="plus.png" width="50px" height="50px" class='plus-image'>
</div>
</div>
</div>
答案 1 :(得分:4)
您可能需要使用"position: absolute"
定位第二张图片,然后通过设置
margin-top: 50%;
margin-left: 50%;
transform: translate(-50%,-50%);
不要忘记容器需要position: relative
才能包含"fixed"
图片。
答案 2 :(得分:1)
在您的图标上给出位置:绝对......
使用css
在图像上移动它