Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何删除嵌套填充以在包含其他 div 的 div 中获得准确的高度和宽度。我正在使用 Tailwind 和这个 UI。
菊花界面
边距顶部和边距底部不适合。即使我使用 vh 或/和 wh 单位,以及其他提示。
如果你能详细说明你在寻找什么,那就太好了!您可以从使用此 * 符号开始删除样式表中元素的内置边距和填充。
*{ margin:0 padding:0 }
这应该删除所有元素(包括嵌套元素)的任何填充或边距,您将获得它们的确切高度和宽度。高度将是字体大小,宽度将是屏幕大小,没有任何边距或填充。