我需要创建一条横跨整个屏幕的红线。
<!DOCTYPE html>
<head>
<style type="text/css">
#redBar{ width: 100%; height: 10px; z-index: -1; margin-top: 80px; background: #D2232A;}
#heading{ width: 768px; margin-left: auto; margin-right: auto; margin-top: 80px;}
</style>
</head>
<body>
<div id="redBar"></div>
<div id="heading"> Heading</div>
</body>
</html>
请注意,当您使用水平滚动条向右滚动时,不会显示红色条。