代码
提交代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
/* 清除默认样式 */
* { padding: 0; margin: 0; }
/* 令html和body全屏显示, 并有一个灰色背景 */
html, body { height: 100%; background: gray; }
/* 在父元素上设置相对定位 */
body { position: relative; }
div {
/* 绝对定位 */
position: absolute;
/* 令其上下方向与父元素的距离为0 */
top: 0;
bottom: 0;
/* 白色背景 */
background: white;
}
/* 左边的列 */
.left {
/* 令其左侧方向与父元素的距离为2% */
left: 2%;
/* 令其右侧方向与父元素的距离为51% */
right: 51%;
}
/* 右边的列 */
.right {
/* 令其左侧方向与父元素的距离为51% */
left: 51%;
/* 令其右侧方向与父元素的距离为2% */
right: 2%;
}
</style>
</head>
<body>
<div class="left"></div>
<div class="right"></div>
</body>
</html>
运行结果