html - Not able to put space between search form and menu in css -


here jsfiddle (without design)

not able put space between search form , menu.

i need, in home link have space before menu.. search form need put space after menu.

#search-ams {     background: #fff none repeat scroll 0% 0%;     border: 1px solid #cacaca;     width: 213px;     height: 24px;     float: right;     padding: 0px; } 

i tried put padding value.. if add padding-right:5px; .. search form moved down in menu.

can me fix this.

thanks in advance.

you can use margin space elements out:

#search-ams {     float: right;     background: #fff none repeat scroll 0% 0%;     width: 213px;     height: 24px;     border: 1px solid #cacaca;     margin-top: 20px;     margin-right: 20px; }    

jsfiddle


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - IIFE: var vs this - is there any difference? -

r - Grow a ffdf data frame on disk gradually -