Answers for "add white border over menu in html"

CSS
0

white border css

border: solid white 4px;
Posted by: Guest on June-28-2020
0

how to make the border invisible in html

#(your id)
{
	border:none;
}
Posted by: Guest on July-13-2020
0

css using border top border bottom to create a hamburger icon

.menu-toggle.on {
	border-top-color:#ff0;
	border-bottom-color:#ff0
}
.nav-toggle.on:before {
	border-top-color:#ff0;
}
Posted by: Guest on November-03-2020
0

css using border top border bottom to create a hamburger icon

.menu-toggle {
	border-top:6px solid #828282;
	border-bottom:6px solid #828282;
	display:inline-block;
	height:30px;
	margin-top:-15px;
	position:absolute;
	right:20px;
	text-indent:-999px;
	top:50%;
	width:40px;
}
.menu-toggle:before {
	border-top:6px solid #828282;
	content:"";
	left:0;
	position:absolute;
	top:6px;
	width:100%;
}
Posted by: Guest on November-03-2020

Browse Popular Code Answers by Language