
批改狀態(tài):合格
老師批語:下次在提交作業(yè)的時候,記得在提交界面的狀態(tài)一欄選擇“作業(yè)”進行提交
代碼演示
<div class="box">
<nav class="nav1">
<a href="">首頁</a>
<a href="">找游戲</a>
<a href="">下資源</a>
<a href="">目錄</a>
<a href="">排行榜</a>
<a href="">站內(nèi)動態(tài)</a>
<a href="">小組</a>
<a href="">下載app</a>
</nav>
<div class="nav2">
<a href="">登錄</a>
<a href="">注冊</a>
</div>
</div>
<div class="grid">
<div class="item">111</div>
</div>
<style>
body {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.box {
display: flex;
height: 50px;
padding: 0 400px;
background-color: lightcyan;
box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
flex-flow: row nowrap;
place-content: space-between;
/* place-items: center; */
}
.nav1 {
display: flex;
text-align: center;
}
.nav2 {
display: flex;
text-align: center;
}
.nav1 a {
color: rgb(150, 150, 150);
text-decoration: none;
min-width: 5em;
line-height: 50px;
}
.nav2 a {
color: rgb(150, 150, 150);
text-decoration: none;
min-width: 3.5em;
line-height: 50px;
}
a:hover {
color: black;
transition: 0.1s;
}
.grid {
margin-top: 2em;
width: 20em;
height: 10em;
background-color: #ccc;
display: grid;
grid: repeat(4, 1fr) / repeat(4, 1fr);
}
.item {
background-color: lightgreen;
grid-area: 2/2/5/5;
}
</style>
微信掃碼
關(guān)注PHP中文網(wǎng)服務號
QQ掃碼
加入技術(shù)交流群
Copyright 2014-2025 http://ipnx.cn/ All Rights Reserved | php.cn | 湘ICP備2023035733號