gap above nav bar html

Solutions on MaxInterview for gap above nav bar html by the best coders in the world

showing results for - "gap above nav bar html"
Fritz
28 Jan 2018
1<!-- make a empty div and style it (css) with background color : <your nav bar color>,
2top : 0, left : 0. place it just below the nav bar. -->
3<div class="whitespace"></div>
4  	<ul>
5     <li><a>*O*</a></li>
6     <li><a>OwO</a></li>
7     <li><a>^U^</a></li>
8     <li><a>^w^</a></li>
9     <li><a>TwT</a></li>
10</ul>
11<!-- style (css) -->
12.whitespace {
13	width: 1300px;
14  	height: 100px;
15  	top: 0px;
16  	left: 0px;
17  	background: #FFFFFF;
18  	position: fixed;
19}