Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
190
rated 0 times [  197] [ 7]  / answers: 1 / hits: 34711  / 9 Years ago, fri, january 15, 2016, 12:00:00

I used Material-UI 's AppBar component and it works well, but comes with a margin, anyone got a workaround. I need to get rid of the margin.


More From » css

 Answers
10

You can always specify custom styles on a material-ui component by passing it the style property like so:



<AppBar style={{ margin: 0 }}/>


That will override the default root element style. If the property you're willing to change is on a children component, you'll have to set it using CSS, if there is no specific property material-ui exposes you.






Removing the margin on the body would also fix your problem



body {
margin: 0;
}


Although you should usually use a CSS reset to avoid getting errors like these by integrating the following CSS snippet:



*, *:after, *:before {
box-sizing: border-box;
font: inherit;
color: inherit;
margin: 0;
padding: 0;
border: none;
outline: none;
}

[#63710] Thursday, January 14, 2016, 9 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
denver

Total Points: 232
Total Questions: 111
Total Answers: 103

Location: South Korea
Member since Sat, Oct 2, 2021
3 Years ago
;