gpt4 book ai didi

html - css-container border 应该全屏显示

转载 作者:行者123 更新时间:2023-11-28 14:06:35 26 4
gpt4 key购买 nike

我有一个非常简单的要求。我需要无论浏览器屏幕是什么,左右边框都应该继续。即顶部和底部应该保持白色,但左右应该是黑色。简而言之就是最终结果应该像下面的图片 http://s13.postimage.org/uuy4fobxj/border.jpg

这是我的代码:

<html>
<head>
<style type="text/css">
body {
text-align: center;
background-color: #FAFAFA;
font-family: Verdana,Helvetica,sans-serif,Arial;
height: 100%!important;
}
#container {
background-color: #FFFFFF;
border-bottom: 0 none;
border-left: 1px solid #CCCCCC;
border-right: 1px solid #CCCCCC;
margin: 0 auto !important;
min-height: 100%;
padding: 0;
width: 978px !important;
overflow:auto;
}
</style>
</head>
<body>
<div id ="container">
</div>
</body>
<html>

最佳答案

我认为您正在 Web 开发中寻找一个相当普遍的东西,即在页面上居中放置内容,对吗?这对我有用...

<html>
<head>
<style type="text/css">
html,body
{
margin:0;
padding:0;
}

body {
text-align: center;
background-color: #000;
font-family: Verdana,Helvetica,sans-serif,Arial;
height: 100%!important;
}
#container {
background-color: #FFFFFF;
margin: 0 auto !important;
min-height: 100%;
padding: 0;
width: 978px !important;
overflow:auto;
}
</style>
</head>
<body>
<div id ="container">
</div>
</body>
<html>

关于html - css-container border 应该全屏显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9881672/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com