gpt4 book ai didi

html - 如何使用九个元素调整列大小

转载 作者:行者123 更新时间:2023-11-28 02:53:16 25 4
gpt4 key购买 nike

我是 Bootstrap 的新手,我想知道如何为九个 元素 使用网格。我有一个位于网页顶部的菜单,它有九个 element、五个 text/button element 和四个间距 element(我发现这是获得我想要的东西的最简单方法),就其本身而言,它看起来像这样:

Menu1

这看起来不错,但是,我在 Bootstrap 中学习了如何根据屏幕大小调整页面大小。这是非大版本(没有调整大小的变化)中的样子:

Menu2

现在,如果您知道调整大小的工作原理(我想您知道),您就会知道从这里开始情况只会变得更糟。我想知道如何使用 grid 让我的菜单根据屏幕尺寸自动调整大小。

代码:

#menuBar {
height: 85px;
width: 100%;
background-color: #F2F2F2;
position: relative;
}
.titleButton, #contactButton {
font-family: 'Lato', sans-serif;
font-size: 30px;
border-bottom: 3px groove;
border-radius: 2px;
line-height: 2.5;
}
.titleSpacer {
margin-right: 10%;
}
.titleButton, .titleSpacer, #contactButton {
display: inline;
}
.titleButton:hover, #contactButton:hover {
cursor: pointer;
border-bottom: 2px groove black;
}
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>CyanCoding | Home</title>
<link href="index.css" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="index.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lato|Montserrat|Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
</head>
<body>
<div class = "container-fluid">
<div id = "menuBar">
<center>
<div class = "row-fluid">
<div class = "titleButton col-lg-offset-1 col-md-offset-1 col-sm-offset-6 col-xs-offset-12" id = "homeButton">Home</div>
<div class = "titleSpacer col-lg-1 col-md-1 col-sm-6 col-xs-12"></div>
<div class = "titleButton col-lg-1 col-md-1 col-sm-6 col-xs-12" id = "programsButton">Programs</div>
<div class = "titleSpacer col-lg-1 col-md-1 col-sm-6 col-xs-12"></div>
<div class = "titleButton col-lg-1 col-md-1 col-sm-6 col-xs-12" id = "newsButton">News</div>
<div class = "titleSpacer col-lg-1 col-md-1 col-sm-6 col-xs-12"></div>
<div class = "titleButton col-lg-1 col-md-1 col-sm-6 col-xs-12" id = "aboutButton">About</div>
<div class = "titleSpacer col-lg-1 col-md-1 col-sm-6 col-xs-12"></div>
<div id = "contactButton" class = "col-lg-1 col-md-1 col-sm-6 col-xs-12">Contact</div>
<div class="col-lg-1 col-md-1 col-sm-1 hidden-xs"></div>
</div>
</center>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</body>
</html>

P.S 我实际上只是更改了 col-lg 的结果,因为我在大屏幕上查看它并认为我可以稍后修复其他的。如果您也可以在您的答案中使用其他尺寸,那就更好了。

P.P.S 查看代码片段时,它可能看起来真的很奇怪。即使您看到完整的页面结果,您也会看到在十二个 网格 中使用九个 element 时会发生什么。

最佳答案

有一种方法可以实现这一点:

代码:

#menuBar {
background-color: #F2F2F2;
position: relative;
font-family: 'Lato', sans-serif;
}
.title-button {
font-size: 30px;
border-bottom: 2px groove;
text-align: center;
line-height: 2.5;
}
.title-button:hover {
cursor: pointer;
border-bottom: 2px groove black;
}
@media(min-width: 768px) and (max-width: 991px) {
.title-button {
font-size: 20px;
}
}
<div class="container-fluid">
<div id="menuBar" class="clearfix">
<div class="row-fluid">
<div class="title-button col-sm-2 col-sm-offset-1">Home</div>
<div class="title-button col-sm-2">Programs</div>
<div class="title-button col-sm-2">News</div>
<div class="title-button col-sm-2">About</div>
<div class="title-button col-sm-2">Contact</div>
</div>
</div>
</div>

Codepen here


如你所见:

  • 我删除了分隔符,因为这不是执行此操作的好方法。如果你不想要你的 border-bottom要填充所有宽度,您可以创建一个 span element并申请 border

  • 尺寸从 768px 起至 991px我申请了 media-query减少你的font-size因为 5 element两行中的 s 不会填满所有行。但是,如果你想要最后一个 element , 填写所有最后一行只需更改您的 class转至 col-sm-12 col-md-2 .

  • 不要使用 <center>标签。它已被弃用。 More info

  • 不要使用 Camel Case 作为类名,用破折号分隔单词。

关于html - 如何使用九个元素调整列大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46571314/

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