📜  删除组件周围的白色边框 angular - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:21.355000             🧑  作者: Mango

代码示例1
// if a white border appears in all the components that you add to the page 
//make sure you have this code in src/styles.scss
//(this file the global file of styles for the entire project)

body {
    border: none !important;
    margin: 0px !important;
    padding: 0 !important;
}