height = 2px和height = 2有什麼區別?當我們不指定像px或em這樣的單位時,它需要什麼單位?height = 2px和height = 2有什麼區別
1
A
回答
0
如果你指的是HTML那麼它將永遠是像素。如果是CSS,它將取決於瀏覽器,並且取決於您分配高度的元素,例如line-height:2將表示該行上字體值的200%。當前的瀏覽器將其指定爲CSS中的無效值,並且不應呈現大小。
0
它不應該工作。
如果選中的開發工具,你會發現這條消息height: 50;
無效的屬性值
因爲你要加上單位,讓瀏覽器知道如何使你的元件。
0
那麼,這是無效的。
您可以使用鉻工具(F12)檢查元素,從中刪除'px',並接收無效值的警告。
0
使用這個鏈接試試高度= 100和height = 100 px.understand各色的 http://www.w3schools.com/cssref/tryit.asp?filename=trycss_position_bottom
+0
我認爲它沒有正常工作 –
相關問題
- 1. 在CSS中,line-height:1.5和line-height:150%有什麼區別?
- 2. 是什麼的$(document).height()和$(窗口).height()
- 3. 在PlayN Graphics界面中,height和screenHeight方法有什麼區別?
- 4. 「object-fit:contains」和「max-width:100%; max-height:100%」有什麼區別?
- 5. 爲什麼$(document).height()與$(document.body).height()不同?
- 6. android - calculateInSampleSize,爲什麼Math.round在width> height時處理height(height/reqHeight)?
- 7. img元素上的HTML width/height屬性和CSS width/height屬性有什麼區別?
- 8. 用`height = device-height`設置元視口標籤有什麼效果?
- 9. Parent div,height not set,over-sizes height by several pixels to fit child img element height?爲什麼?
- 10. iFrame和「max-height」
- 11. JS「Window」width-height vs「screen」width-height?
- 12. Ionic 2:Slider auto height
- 13. line-height與font-size/line-height
- 14. $(窗口).height()VS的$(document).height
- 15. min-height,height,class,id precedence
- 16. javascript html height and window height
- 17. sIFR3和line-height/leading
- 18. $ .height上
- 19. 3/2和-3/2有什麼區別?
- 20. flex measuredHeight vs height
- 21. Monotouch:UITableViewCell height
- 22. 2px區別FF和Chrome
- 23. Iframe height [dynamic] for each 2 second
- 24. CSS:min-height和vertical-align:middle
- 25. jquery animate height bouncing
- 26. HTML/CSS Div(height:80px)over Div(height:100%;)
- 27. three.js shape holes height
- 28. jquery - 使用.height()
- 29. 什麼是「overflow:scroll \ 9」或「height:100%\ 9」?
- 30. 爲什麼min-height不起作用?
在CSS中沒有「默認」單位。單位是非零值所必需的。所以'height = 2'根據css標準是無效的。請參見[this](http://stackoverflow.com/questions/2272279/css-default-units)問題。 – Adam