我有一个布局,其中有 3 列。
因此,我将 100% 除以 3。
结果显然是 33.333....
我的目标是完美1/3 的 screen。
问题:
CSS可以处理点后多少个数字来指定宽度的1/3?
eg ← css 可以处理33.33333
(n=5)
多少个n
HTML:
<div id="wrapper">
<div id="c1"></div>
<div id="c2"></div>
<div id="c3"></div>
</div>
CSS:
#c1, #c2, #c3 {
width: 33%; // 1/3 of 100%
}
有没有更好的除以3的方法?