javascript - 為何margin:auto auto 不能上下左右對齊?
問題描述
一個html中只有一個p。
<p class='test'></p>css1:.test{ width:200px; height:200px; border:1px solid red; margin:0 auto; }
css1可以使p.test左右居中。
css2:
.test{ width:200px; height:200px; border:1px solid red; margin:auto auto; } 為何css2不可以使p.test上下左右居中?? 請不要回答如何使他p.test上下左右居中,請回答為何margin:auto auto;不能上下左右居中??
問題解答
回答1:The following constraints must hold among the used values of the other properties:
’margin-left’ + ’border-left-width’ + ’padding-left’ + ’width’ + ’padding-right’ + ’border-right-width’ + ’margin-right’ = width of containing block
If both ’margin-left’ and ’margin-right’ are ’auto’, their used values are equal. This horizontally centers the element with respect to the edges of the containing block.
下面是關(guān)于高度的:
If ’margin-top’, or ’margin-bottom’ are ’auto’, their used value is 0. If ’height’ is ’auto’, the height depends on whether the element has any block-level children and whether it has padding or borders:
因為規(guī)范就是這么規(guī)定的算法,瀏覽器就是這么實現(xiàn)的。
CSS規(guī)范
回答2:這是個好問題,那我問你,當(dāng)一行存在兩個元素的時候,你可以左右居中嗎?同理當(dāng)你的上下都可能有元素存在的情況下你要瀏覽器怎么去計算對應(yīng)元素應(yīng)該存在的位置?
回答3:不能吧,上下對齊如果不用flex布局,沒啥太好的辦法。virtical–align也不太好用!
回答4:不能,如果想上下左右對居中的話,推薦使用flex布局,其次是table,table-cell或者定位
相關(guān)文章:
1. javascript - webpack1和webpack2有什么區(qū)別?2. Python2中code.co_kwonlyargcount的等效寫法3. django - Python error: [Errno 99] Cannot assign requested address4. 求救一下,用新版的phpstudy,數(shù)據(jù)庫過段時間會消失是什么情況?5. python小白 關(guān)于類里面的方法獲取變量失敗的問題6. javascript - vscode alt+shift+f 格式化js代碼,通不過eslint的代碼風(fēng)格檢查怎么辦。。。7. java - 線上應(yīng)用,如果數(shù)據(jù)庫操作失敗的話應(yīng)該如何處理?8. python小白,關(guān)于函數(shù)問題9. [python2]local variable referenced before assignment問題10. python - vscode 如何在控制臺輸入
