簡體   English   中英

如何在內容保持居中狀態之前縮小間距

[英]How to make the spacing shrink before content while keeping the content centered

我想保持內容居中,並先用盡多余的空間
我嘗試使用百分比寬度,這可以幫助我居中,但空格始終存在

實現它的理想方法是什么? 我希望最終結果像這樣Oapletwo.com

 .wrapper { width: 1140px; margin: auto; border-left: 1.5px solid rgba(255, 0, 0, 0.11); border-right: 1.5px solid rgba(255, 0, 0, 0.11); } h1 { width: fit-content; margin: auto; text-transform: uppercase; } 
 <div class="wrapper"> <div class="brand"> <h1>PaymoNeer</h1> </div> </div> 

您可以使用text-align: center; 為您的.brands div

 .wrapper { width: 1140px; margin: auto; border-left: 1.5px solid rgba(255, 0, 0, 0.11); border-right: 1.5px solid rgba(255, 0, 0, 0.11); } .brand { text-align: center; } h1 { margin: auto; text-transform: uppercase; } 
 <div class="wrapper"> <div class="brand"> <h1>PaymoNeer</h1> </div> </div> 

使用text-align:center; 並調整內容的填充

只需在.wrapper元素上使用text-align: center ,並在.brand div上display: inline-blockmargin: 0 auto即可使其居中。

 .wrapper { text-align: center; border-left: 1.5px solid rgba(255, 0, 0, 0.11); border-right: 1.5px solid rgba(255, 0, 0, 0.11); } .brand { display: inline-block; margin: 0 auto; } h1 { text-transform: uppercase; } 
 <div class="wrapper"> <div class="brand"> <h1>PaymoNeer</h1> </div> </div> 

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM