CSS のセンタリングは、将来の開発の便宜のために、常に比較的デリケートなトピックであり、一般的に、要約する必要があると著者は感じています。センタリングの問題 垂直センタリングと水平センタリングに分けられます。実は、水平センタリングは非常に簡単ですが、垂直センタリングの方法と方法はさまざまです。
インライン要素の設定 text-align:center;
ブロックレベルの要素のセンタリングスキーム
垂直方向のセンタリング設定:
1 を使用します。 ) left、top、margin-left、および margin-top のプロパティを設定するには、
.box{ position:absolute;/*或fixed*/ top:50%; left:50%; margin-top:-100px; margin-left:-200px;}
.box{ position: absolute;或fixed top:0; right:0; bottom:0; left:0; margin: auto;}
.box{display:table-cell;vertical-align:middle;text-align:center;width:120px;height:120px;background:purple;}
.box{ position: absolute; transform: translate(50%,50%); -webkit-transform:translate(50%,50%); -moz-transform:translate(50%,50%); -ms-transform:translate(50%,50%);}
投稿者はこれらのセンタリング方法を一時的にマスターしました、読者の皆様、もし他に良い方法があった場合、または何かが間違っていると思われる場合は、コメントしてください、ありがとうございます。
.box{position:fixed;display:block;background:rgba(0,0,0,.5);}.box:before{content:'';display:inline-block;vertical-align:middle;height:100%;}.box.content{width:60px;height:60px;line-height:60px;color:red;