user16213526
user16213526

Reputation:

Couldnt able remove space between navbar and landing page

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.

enter image description here

Upvotes: 0

Views: 318

Answers (2)

codmitu
codmitu

Reputation: 709

in CSS you can put something like:

*{
  border: 1px solid grey;
}

and see which one takes extra space OR: enter image description here

Upvotes: 1

Anshuman Yadav
Anshuman Yadav

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

Related Questions