I am experiencing a very weird bug (I think), something is making the button about 2px
lower that the search box. Can anyone tell me how I could fix this issue please?
#form {
text-align: center;
}
#Bar {
height: 35px;
width: 400px;
font-size: 20px;
}
#sea {
background-color: #ffffff;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border-radius: 0px;
height: 35px;
color: #000000;
font-family: Arial;
border-style: solid;
border-width: 1px;
font-size: 15px;
text-decoration: none;
border-color: #B9B9B9;
}
body {
margin: 0 auto;
font-family: Arial;
}
<html>
<head>
<link rel="stylesheet" href="test.css" />
</head>
<hr>
<form id="form">
<input id="Bar" name="Input" type="text" placeholder="Search for word or phrase"></input>
<button id="sea">Search</button>
<br>
<input type="radio" name="textOp" checked="checked">Highlight</input>
<input type="radio" name="textOp">Filter</input>
</form>
</script>
</html>