当前位置: 首页>編程日記>正文

css样式实现居中对齐

css样式实现居中对齐

一、行内元素的居中

1.水平居中

1.text-align

    .parent {background-color: red;text-align: center;}
  <div class="parent"><span class="child">content</span></div>

2.fit-content

    .parent {background-color: red;width: fit-content;margin: auto;}
  <div class="parent"><span class="child">content</span></div>

2.垂直居中

1.line-height(单行文本)

    .parent {height: 200px;line-height: 200px;background-color: red;}
  <div class="parent"><span class="child">content</span></div>

二、块级元素的居中

水平居中:margin:0 auto;

    .parent {background-color: red;}.child {margin: 0 auto;width: 100px;background-color: royalblue;}
  <div class="parent"><div class="child">content</div></div>

三、水平垂直居中

1.提前知道子元素的宽高

    .parent {position: relative;height: 200px;background-color: red;}.child {height: 100px;width: 100px;position: absolute;background-color: royalblue;left: 50%;top: 50%;margin-top: -50px;margin-left: -50px;}
  <div class="parent"><div class="child">content</div></div>

也可以使用css中的calc函数

    .parent {position: relative;height: 200px;background-color: red;}.child {height: 100px;width: 100px;position: absolute;background-color: royalblue;left: calc(50% - 50px);top: calc(50% - 50px);}

2.不知道子元素的宽高

    .parent {position: relative;height: 200px;background-color: red;}.child {position: absolute;background-color: royalblue;left: 50%;top: 50%;transform: translate(-50%,-50%);}

3.定位+margin

    .parent {position: relative;height: 200px;background-color: red;}.child {width: 100px;height: 100px;background-color: royalblue;position: absolute;left: 0;top: 0;right: 0;bottom: 0;margin: auto;}

4.padding

    .parent {padding: 20px;background-color: red;}.child {height: 200px;background-color: royalblue;}

5.通过flex实现

    .parent {height: 200px;display: flex;align-items: center; /*控制垂直居中*/justify-content: center; /*控制水平居中*/background-color: red;}.child {width: 100px;height: 100px;background-color: royalblue;}

6.伪元素

 .parent {height: 200px;text-align: center;vertical-align: middle;background-color: red;}.child {width: 100px;height: 100px;display: inline-block;vertical-align: middle;background-color: royalblue;}.parent::before {   /*默认行内元素,添加display: inline-block;成为行内块元素*/content: "";width: 20px;height: 200px;display: inline-block;vertical-align: middle;}

7.calc函数

    .parent {height: 600px;width: 600px;background-color: red;}.child {width: 100px;height: 100px;padding: calc((100% - 100px) / 2);/*使子元素的margin都是250px*/background-clip: content-box;/*只对子元素生效,防止f覆盖父元素*/background-color: royalblue;}


https://www.fengoutiyan.com/post/14500.html

相关文章:

  • 删除css样式属性值
  • 如下所示的这段css样式代码
  • css删除线样式如何实现
  • css样式表大全
  • css中居中对齐的属性
  • 请用css实现下图样式
  • css行高属性
  • 去掉下划线css
  • 鏡像模式如何設置在哪,圖片鏡像操作
  • 什么軟件可以把圖片鏡像翻轉,C#圖片處理 解決左右鏡像相反(旋轉圖片)
  • 手機照片鏡像翻轉,C#圖像鏡像
  • 視頻鏡像翻轉軟件,python圖片鏡像翻轉_python中鏡像實現方法
  • 什么軟件可以把圖片鏡像翻轉,利用PS實現圖片的鏡像處理
  • 照片鏡像翻轉app,java實現圖片鏡像翻轉
  • 什么軟件可以把圖片鏡像翻轉,python圖片鏡像翻轉_python圖像處理之鏡像實現方法
  • matlab下載,matlab如何鏡像處理圖片,matlab實現圖像鏡像
  • 圖片鏡像翻轉,MATLAB:鏡像圖片
  • 鏡像翻轉圖片的軟件,圖像處理:實現圖片鏡像(基于python)
  • canvas可畫,JavaScript - canvas - 鏡像圖片
  • 圖片鏡像翻轉,UGUI優化:使用鏡像圖片
  • Codeforces,CodeForces 1253C
  • MySQL下載安裝,Mysql ERROR: 1253 解決方法
  • 勝利大逃亡英雄逃亡方案,HDU - 1253 勝利大逃亡 BFS
  • 大一c語言期末考試試題及答案匯總,電大計算機C語言1253,1253《C語言程序設計》電大期末精彩試題及其問題詳解
  • lu求解線性方程組,P1253 [yLOI2018] 扶蘇的問題 (線段樹)
  • c語言程序設計基礎題庫,1253號C語言程序設計試題,2016年1月試卷號1253C語言程序設計A.pdf
  • 信奧賽一本通官網,【信奧賽一本通】1253:抓住那頭牛(詳細代碼)
  • c語言程序設計1253,1253c語言程序設計a(2010年1月)
  • 勝利大逃亡英雄逃亡方案,BFS——1253 勝利大逃亡
  • 直流電壓測量模塊,IM1253B交直流電能計量模塊(艾銳達光電)
  • c語言程序設計第三版課后答案,【渝粵題庫】國家開放大學2021春1253C語言程序設計答案
  • 18轉換為二進制,1253. 將數字轉換為16進制
  • light-emitting diode,LightOJ-1253 Misere Nim
  • masterroyale魔改版,1253 Dungeon Master
  • codeformer官網中文版,codeforces.1253 B
  • c語言程序設計考研真題及答案,2020C語言程序設計1253,1253計算機科學與技術專業C語言程序設計A科目2020年09月國家開 放大學(中央廣播電視大學)
  • c語言程序設計基礎題庫,1253本科2016c語言程序設計試題,1253電大《C語言程序設計A》試題和答案200901
  • 肇事逃逸車輛無法聯系到車主怎么辦,1253尋找肇事司機