how to give space between two dropdown in html code example
Example: how to add space between menu items in css
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
ul {margin:0}
ul li {float:left;}
ul li a {
padding: 20px;
list-style:none;
}
</style>
</head>