首页 > 代码库 > 10月19日笔记
10月19日笔记
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>lianxi</title>
<style>
#bj,.tup{
width: 300px;
height: 500px;
position: relative;
/*relative相对定位 相对于自己原来的位置移动*/
}
#xia{
width: 300px;
height:100px;
background-color: red;
position: absolute;
/*absolute绝对定位,相对于具有position属性的父级元素移动,没有position属性就相对于body移动*/
top: 400px;
opacity: 0.3;
text-align: center;
}
</style>
</head>
<body>
<div id="bj">
<img class="tup" src="http://www.mamicode.com/4.png" >
<div id="xia">
<h1>图片说明</h1>
</div>
</div>
</body>
</html>
10月19日笔记
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。