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.
我正在使用布局网格创建 MatBlazor 应用程序。我有一个按钮组件,我希望它完全填充它的单元格。如何扩展组件以填充其单元格?
如果我正确理解您的要求,那么您正在尝试让一个组件填充其父级。您应该能够通过向组件添加 CSS 来实现这一点。尝试:
width: 100%; height: 100%;
还要删除任何填充/边距。