设置子元素等分父元素宽度注意事项

前端之家收集整理的这篇文章主要介绍了设置子元素等分父元素宽度注意事项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

当设置N个子元素等分父元素宽度时,如果采用 childrenWidth = parentWidth / N 的方式,可能出现除不尽的情况,这时候,在有的浏览器下,子元素会换行
所以在设置时可以稍微调整,比如

  • childrenWidth = (parentWidth-1)/N

  • childrenWidth = Math.floor(parentWidth/N);

原文链接:https://www.f2er.com/note/421466.html

猜你在找的程序笔记相关文章