也许这已经得到了解答,但在Google和Stackoverflow中都无法找到解决方案。新手在这里。
我在家里使用大屏幕,很少在全屏使用浏览器。但今天我试着看看我测试的网站看起来怎么样,而且很丑陋。在正常尺寸的浏览器中它没问题,但在大屏幕上它都在左边。 如何将它放在大屏幕中心?
我知道我可以填充它并为大屏幕制作更大的东西,但我想学习如何在需要的时候这样做。
这是我的HTML和CSS文件
rentClusterManager = new ClusterManager<OffersMarker>(this, gmap);
rentClusterRenderer = new OffersClusterRenderer(this, gmap, rentClusterManager);
rentClusterManager.setRenderer(rentClusterRenderer);
for (AdMarker adMarker : adsArray) { //<-- adsArray.size() = 6500
rentClusterManager.addItem(makeOffersMarker(adLocation, nrOfAds, realEstateAdIds, OffersMarker.DEALTYPE.SALE_CODE));
}
rentClusterManager.cluster();
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
</head>
<header class="col-12">
<!--logo-->
<div class="col-3 logo">
<img alt="logo" src="logo-lxfcl-new.png" width="210" height="54">
</div>
<div class="col-9 topMenu">
<h4>Welcome</h4>
<!--top menu-->
<nav>
<ul>
<li>Home</li>
<li>Annonces</li>
<li>Comment faire</li>
<li>contacts</li>
</ul>
</nav>
</div>
</header>
<!--left menu-->
<nav class="col-3 sidemenu">
<ul>
<li>Ateliers</li>
<li>Associations</li>
</ul>
</nav>
<main class="col-9 sectionColor">
<section>
sdfsdefwef
</section>
</main>
<!--footer-->
<footer class="col-12">
copyright
</footer>
答案 0 :(得分:4)
您可以将整个页面打包到fwrite()
课程中,在px中提供.wrapper
最大宽度值 - 例如1200px,然后将其居中于:.wrapper
。
答案 1 :(得分:0)
最简单的方法可能是引入一个包装器来包装网站上的所有内容,使宽度与列中最宽的宽度匹配(.col-12
- 并且可以在{{1}上删除该宽度现在),并使用.col-12
水平居中。
margin: auto;
&#13;
/*defining the grid system*/
* {
box-sizing: border-box;
}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%; max-width: 300px;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%; max-width: 900px;}
.col-9 {width: 75%; max-width: 900px;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
.wrap {
max-width: 1200px;
margin: auto;
}
[class*="col-"] {
float: left;
padding: 10px;
border: solid 1px;
}
.row::after {
content: "";
clear: both;
display: table;
}
/*-------------------------------------*/
header, aside, footer, main, nav, section {
display: block;
}
/*---------------------------------------------*/
body {
font-family: roboto;
font-size: 1em;
line-height: 150%;
background-color: #dddddd;
margin: 0 auto;
}
.logo {
float:left;
}
.logo img {
display: block;
margin-left: auto;
margin-right: auto;
}
.topMenu {
float:left;
clear: right;
padding: 0px;
text-align: center;
}
.topMenu nav,
.topMenu h4 {
padding: 0;
}
.topMenu li {
display: inline;
list-style-type: none;
color: #5e2f2f;
padding-right: 30px;
}
.sidemenu li {
border-bottom: dotted 1px #5e2f2f;
list-style-type: none;
line-height: 200%;
color: #72a1e7;
margin-left: -40px; /*this is because of the default webkit-padding*/
max-width: 300px;
}
nav {
clear: left;
padding-top: 10px;
font-size: 0.9em;
}
.sectionColor {
background-color: white;
}
footer {
clear: both;
text-align: right;
padding-right: 20px;
font-style: italic;
font-size: 0.8em;
}
&#13;
答案 2 :(得分:0)
首先,您错过了body
元素。修复此问题后,您可以将您的身体设计为:
body {
width: 100%;
max-width: 1200px;
margin: 0 auto;
}
答案 3 :(得分:0)
如果你需要像Plenarto所说的那样只是水平居中,请将其包含在<div>
中,并在CSS和width
中设置max-width
或margin: 0 auto
。
如果您还需要将所有内容垂直居中,则需要将其放置在表格单元格或类似于表格单元格的内容中。在这种情况下我使用以下技巧:
html, body { margin: 0; padding: 0; width: 100%; height: 100% }
html { display: table }
body { display: table-cell; vertical-align: middle }
答案 4 :(得分:0)
我会使用最新的定心CSS发明 FLEXBOX尝试应用以下代码
.container {
display: flex;
align-items: center;
justify-content: center;}
与旧版CSS相比,中心方法毫不费力。