为了账号安全,请及时绑定邮箱和手机立即绑定

如何实现上左右在个DIV满屏布局?

如何实现上左右在个DIV满屏布局?

繁花不似锦 2019-05-25 16:15:18
1.实现上、左、右三块组成样式的全屏布局?2.A区和B区,也要能够在指定的区域内实现 height:100%,但不得超出边界。 红色:div1蓝色:div2黄色:div3A区:div4B区:div5
查看完整描述

2 回答

?
肥皂起泡泡

TA贡献1829条经验 获得超6个赞


<!doctype html>
<html>
<head></head>
<style>
#all{
width:100%;
height:100%;
}
#left{
position:absolute;
background-color:#3aadf0;
float:left;
width:50%;
height:100%;
}
#right{
position:absolute;
background-color:red;
float:right;
width:50%;
height:100%;
margin-left:50%; <!--设置内边距即可,楼主的问题同理可得-->
}
#right a img{
width:300px;
height:300px;
float:left;
margin-top:35%;
margin-bottom:35%;
}
</style>
<body>
<div id="all">
<div id="left">
</div>
<div id="right">
</div>
</div>
</body>
</html>





查看完整回答
反对 回复 2019-05-26
  • 2 回答
  • 0 关注
  • 535 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信