text-align:center與margin:0px auto的區別
text-align:center與margin:0px auto都有居中效果,但是它們的區別是巨大的。
text-align:center一般用來將物件中的文字居中物件,但是在某些瀏覽器中也可以將物件居中對齊,看如下程式碼:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> .parent{ width:300px; height:300px; border:1px solid red; } .mytest{ width:100px; height:100px; border:1px solid green; text-align:center; } </style> </head> <body> <div class="parent"> <div class="mytest">螞蟻部落</div> </div> </body> </html>
以上程式碼在IE6IE7瀏覽器中不但文字居中而且子div也居中對齊,但是在其他標準瀏覽器中只有文字是水平居中。
margin:0px auto能夠將物件本身在所在的父物件中居中對齊,並且在適用於所有瀏覽器。程式碼例項如下:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> .parent{ width:300px; height:300px; border:1px solid red; } .mytest{ width:100px; height:100px; margin:0px auto; border:1px solid green; } </style> </head> <body> <div class="parent"> <div class="mytest">螞蟻部落</div> </div> </body> </html>
以上程式碼中子div將在父div中居中對齊。
相關文章
- text-align:center和margin:0 auto居中的區別
- margin與padding的區別padding
- display: block; -webkit-margin-before: 1em; -webkit-margin-after: 1em; -webkit-margin-start: 0px; -webkit-margin-end: 0px;BloCWebKit
- margin:0 auto;不居中
- margin系列之keyword auto
- 【paramter】undo_management設定為auto與manaul的區別
- 絕對定位使用margin:0 auto居中
- css flex佈局中妙用margin: autoCSSFlex
- Android的padding和margin區別Androidpadding
- overflow:hidden,auto什麼區別
- margin和padding有什麼區別padding
- width:auto和width:100%區別
- 當層無法運用margin:0 auto居中問題
- auto型別型別
- ??與?:的區別
- SIZE AUTO和SIZE SKEWONLY在gather_table_stats時的區別
- inherit與auto
- MySQL的@與@@區別MySql
- mybatis #與$的區別MyBatis
- Null 與 “” 的區別Null
- &與&&, |與||區別
- in與exist , not in與not exist 的區別
- postgresql關於postgresql.auto.conf和postgresql.conf的區別SQL
- IE6下的margin與_margin,會導致樣式錯位
- CentOS 與 Ubuntu 的區別CentOSUbuntu
- artice與section的區別
- GET 與 POST 的區別
- WebSocket 與 Socket 的區別Web
- Postgresql與MySQL的區別MySql
- chown與chmod的區別
- LESS與SASS的區別
- free 與 CFRelease 的區別
- gulp與webpack的區別Web
- @Autowired 與@Resource的區別
- let與var的區別
- post與get的區別
- HashSet與HashMap的區別HashMap
- maven與ant的區別Maven