第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

垂直軸上錨點(diǎn)和標(biāo)題標(biāo)簽的不同間距

垂直軸上錨點(diǎn)和標(biāo)題標(biāo)簽的不同間距

繁星淼淼 2023-10-24 21:26:03
我正在嘗試使用 Flexbox 為我的網(wǎng)站布局頁腳。<h4>有兩列,每列具有相同數(shù)量的項(xiàng)目,但一列由標(biāo)簽中的文本和標(biāo)簽中的其他鏈接填充<a>。它們?cè)诖怪陛S上的間距不同,我不明白為什么。為了清晰起見,我添加了一些背景顏色。我缺少什么?.footer {  font-family: 'nexa_light', sans-serif;  font-style: normal;  background-color: #003152;  color: white;}.footer-container {  background-color: red;  width: 90%;  margin-left: auto;  margin-right: auto;  padding-top: 25px;  padding-left: 30px;}.foot-section {  background-color: blue;  margin-bottom: 15px;}.foot-content {  display: flex;  flex-direction: column;  flex-wrap: nowrap;  align-items: flex-start;  justify-content: flex-end;}.foot-section a {  /*links*/  color: white;}.footer-container>h5 {  /*Copyright*/  margin-left: auto;  margin-right: auto;  margin-top: auto;  font-size: 15px;}@media (min-width: 992px) {  .foot-section h2 {    font-size: 20px;  }  .foot-section a,  .foot-section h4 {    font-size: 15px;  }}<div class="container-fluid footer">  <div class="footer-container row">    <div class="col-sm-3 foot-section">      <div class="foot-content">        <h2><strong>Company</strong></h2>        <h4>London, UK</h4>        <h4>Logo by X</h4>        <h4>Something else</h4>      </div>    </div>    <div class="col-sm-3 foot-section">      <div class="foot-content">        <h2><strong>Quick Links</strong></h2>        <a href="#">Home</a>        <a href="#">Products</a>        <a href="#">News & Reviews</a>      </div>    </div>    <div class="col-sm-6 foot-section">      <div class="foot-content">        <h2><strong>Contact</strong></h2>      </div>    </div>    <h5>Copyright ? X Ltd 2020, All Rights Reserved. |</h5><a href="#"> Privacy Policy</a>  </div></div>
查看完整描述

1 回答

?
狐的傳說

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超3個(gè)贊

標(biāo)題元素(例如 an?h4)往往在瀏覽器默認(rèn)樣式表中設(shè)置頂部和底部邊距。

這些邊距不適用于錨元素 (?a)。

h4以下是應(yīng)用于Chrome 中元素的樣式:

https://img1.sycdn.imooc.com/6537c686000115b809320334.jpg

您可以看到頂部和底部邊距為 1.33em。

  • “block-start”是水平書寫模式下的頂部。

  • “inline-start”是文本開始的一側(cè)。這是 LTR 的左側(cè)。

  • “-end”指的是相反的一側(cè)。

您只需要覆蓋默認(rèn)值即可。將其添加到您的代碼中:h4 { margin: 0; }.

? /* NEW */


.foot-section h4 {

? margin: 0;

}


.footer {

? font-family: 'nexa_light', sans-serif;

? font-style: normal;

? background-color: #003152;

? color: white;

}


.footer-container {

? background-color: red;

? width: 90%;

? margin-left: auto;

? margin-right: auto;

? padding-top: 25px;

? padding-left: 30px;

}


.foot-section {

? background-color: blue;

? margin-bottom: 15px;

}


.foot-content {

? display: flex;

? flex-direction: column;

? flex-wrap: nowrap;

? align-items: flex-start;

? justify-content: flex-end;

}


.foot-section a {

? /*links*/

? color: white;

}


.footer-container>h5 {

? /*Copyright*/

? margin-left: auto;

? margin-right: auto;

? margin-top: auto;

? font-size: 15px;

}


@media (min-width: 992px) {

? .foot-section h2 {

? ? font-size: 20px;

? }

? .foot-section a,

? .foot-section h4 {

? ? font-size: 15px;

? }

<div class="container-fluid footer">

? <div class="footer-container row">

? ? <div class="col-sm-3 foot-section">

? ? ? <div class="foot-content">

? ? ? ? <h2><strong>Company</strong></h2>

? ? ? ? <h4>London, UK</h4>

? ? ? ? <h4>Logo by X</h4>

? ? ? ? <h4>Something else</h4>

? ? ? </div>

? ? </div>

? ? <div class="col-sm-3 foot-section">

? ? ? <div class="foot-content">

? ? ? ? <h2><strong>Quick Links</strong></h2>

? ? ? ? <a href="#">Home</a>

? ? ? ? <a href="#">Products</a>

? ? ? ? <a href="#">News & Reviews</a>

? ? ? </div>

? ? </div>

? ? <div class="col-sm-6 foot-section">

? ? ? <div class="foot-content">

? ? ? ? <h2><strong>Contact</strong></h2>

? ? ? </div>

? ? </div>

? ? <h5>Copyright ? X Ltd 2020, All Rights Reserved. |</h5><a href="#"> Privacy Policy</a>

? </div>

</div>


查看完整回答
反對(duì) 回復(fù) 2023-10-24
  • 1 回答
  • 0 關(guān)注
  • 121 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)