<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" CONTENT="text/html; charset=UTF-8"/>
<title>菜单</title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
div{
margin:0 auto;
text-align:center;
}
.father{
width: 200px;
height: 200px;
background-color: #ffff00;
border: 1px solid #000;
position: relative;
}
.son{
width: 100px;
height: 100px;
background-color: #0000ff;
border: 1px solid #ff0000;
position: absolute;
top: 20px;
left: 20px;
right:-70px;
}
</style>
</head>
<body>
<div>
<div class="father">
<div class="son">
</div>
</div>
</div>
</body>
</html>
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。