x1c 0d1x的数据
完成后,解决方案应如上图所示。
我需要一些关于flexbox的帮助。我只是在学习,有些事情被卡住了,希望有人能提供一些指导。我只使用HTML和CSS创建一个页面标题。在这个标题我有3个不同的子项目
1.左对齐徽标的跨度
1.我想立即出现在徽标右侧的两行文本[标题和副标题]的跨度和
1.问题子,一个导航菜单[水平,没有下拉],需要出现在整个页面的中心,并与徽标和标题内联。
这里是一些工作代码,只是似乎不能得到它的权利。感谢任何帮助
home.html
<!doctype html>
<html>
<script src="http://www.w3schools.com/lib/w3data.js"></script>
<head>
<link rel="stylesheet" href="css/page-header.css">
</head>
<body>
<span w3-include-html="page-header.html"></span>
<script>
w3IncludeHTML()
</script>
</body>
</html>
字符串
页面标题.html
<span class="header-box">
<img class="header-logo" src="images\logo.svg" />
<span class="header-title">Company Title</span>
<span class="header-subtitle">best products</span>
<ul class="header-menu">
<li class="nav-link"><a href="#">Home</a></li>
<li class="nav-link"><a href="#">Gallery</a></li>
<li class="nav-link"><a href="#">Locations</a>/li>
<li class="nav-link"><a href="#">About</a></li>
</ul>
</span>
型
page-header.css
@import url("https://use.typekit.net/xul0ipk.css");
.header-box {
padding: 0.5rem;
background-color: beige;
display: flex;
flex-flow: column nowrap;
justify-items: center;
align-items: center;
}
.header-logo {
display: flex;
flex-flow: inherit;
align-self: flex-start;
width: clamp(3.12rem, 2.8692rem + 2.674vw, 6.88rem);
background-color: blue;
}
.header-box span {
flex-flow: row;
display: inline-flex;
align-self: flex-start;
background-color: aliceblue;
}
.header-title {
display: flex;
}
型
提前感谢!!!
它应该看起来像这样
1条答案
按热度按时间xwmevbvl1#
仅使用A Complete Guide to Flexbox,我做了一个粗略的,修改后的版本,你的代码如下。
flex
属性(由flex-grow
、flex-shrink
和flex-basis
组成)是您在需要将内联flex元素居中时最好的朋友!个字符