圣杯布局方法
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><style>*{margin: 0;padding: 0;}#parent {height: 300px;padding-left: 310px;padding-right: 310px;}#left,#center,#right {height: 300px;float: left;}#left,#right {width: 300px;}#left {background-color: red;margin-left: -100%;position: relative;left: -310px;}#center {width: 100%;background-color: green;}#right {background-color: rgb(0, 0, 0);margin-left: -300px;position: relative;right: -310px;}</style>
</head>
<body>
<div id="parent"><div id="center"></div><div id="left"></div><div id="right"></div></div>
</body></html>