我想在網頁上創建紅色方塊。CSS:寬度/高度屬性只響應px(不是%)
當我寫了下面的HTML元素:
<div style="{'background': 'red', 'table-layout': 'fixed', 'width': '**10%**','height' : '**10%**'}"
我得到一個白色的網頁。
然而,當我替換「%」與「像素」和寫:
<div style="{'background': 'red', 'table-layout': 'fixed', 'width': '**10px**','height' : '**10px**'}"
我得到屏幕的角落一個小紅場。可能,我使用百分比功能錯誤。你能告訴我有什麼問題嗎?
你可以在這裏找到你的答案。 http://stackoverflow.com/questions/14545507/div-height-in-percentage –