Reputation:
I have created website using react, but when i added a navbar and home page under it - it's showing a space which am not able to remove.
Upvotes: 0
Views: 318
Reputation: 709
in CSS you can put something like:
*{
border: 1px solid grey;
}
and see which one takes extra space
OR:
Upvotes: 1
Reputation: 274
If I understand you clearly.
You could use width:100%
in css of your nav bar.
Please refer: https://www.impressivewebs.com/width-100-percent-css/
Upvotes: 1